Openbravo Issue Tracking System - Openbravo ERP
View Issue Details
0024271Openbravo ERPA. Platformpublic2013-07-04 18:472013-07-19 16:10
shuehner 
shuehner 
normalmajorhave not tried
closedfixed 
5
 
3.0MP263.0MP26 
marvintm
Core
No
0024271: ant import.sample.data uses way to much memory and is very slow
The current import.sample data has a very high memory use (1.25GB not enough anymore to import f&b+qa-testing) and is quite slow.

Both are to the fact that is reuses the dal-based code for export/import-client which is much more generic and has several features not needed for import sampledata / export sampledata.

So import.sample.data could be implemented to be much leaner/faster based on dbsourcemanger (like sourcedata of modules)
-
- reimplement import.sample.data/export.sample.data based on dbsm
- use 1 file per table structure as sourcedata does
- Allow putting sampledata into a module and extend import.sample.data to find data in modules, that means normal user will not need to manually work with sampledata files, so the change from 1 file to many files will have not usability impact
No tags attached.
related to defect 0015973 closed AugustoMauch ant export.sample.data gives distinct output in oracle than in postgresql 
Issue History
2013-07-04 18:47shuehnerNew Issue
2013-07-04 18:47shuehnerAssigned To => shuehner
2013-07-04 18:47shuehnerModules => Core
2013-07-04 18:47shuehnerTriggers an Emergency Pack => No
2013-07-04 18:47shuehnerReview Assigned To => marvintm
2013-07-05 01:41hgbotCheckin
2013-07-05 01:41hgbotNote Added: 0059879
2013-07-05 01:41hgbotCheckin
2013-07-05 01:41hgbotNote Added: 0059880
2013-07-05 01:41hgbotCheckin
2013-07-05 01:41hgbotNote Added: 0059881
2013-07-05 01:41hgbotCheckin
2013-07-05 01:41hgbotNote Added: 0059882
2013-07-05 01:41hgbotStatusnew => resolved
2013-07-05 01:41hgbotResolutionopen => fixed
2013-07-05 01:41hgbotFixed in SCM revision => http://code.openbravo.com/erp/devel/pi/rev/a5b3324cad3b93a77e1e1efc893c1d6a1f6702f8 [^]
2013-07-16 14:26hudsonbotCheckin
2013-07-16 14:26hudsonbotNote Added: 0060028
2013-07-16 14:26hudsonbotCheckin
2013-07-16 14:26hudsonbotNote Added: 0060029
2013-07-16 14:26hudsonbotCheckin
2013-07-16 14:26hudsonbotNote Added: 0060030
2013-07-18 16:22alostaleRelationship addedrelated to 0015973
2013-07-19 16:10marvintmNote Added: 0060130
2013-07-19 16:10marvintmStatusresolved => closed
2013-07-19 16:10marvintmFixed in Version => 3.0MP26

Notes
(0059879)
hgbot   
2013-07-05 01:41   
Repository: erp/devel/dbsm-main
Changeset: 6634e9c133dbb44649c9a8181c4f838f4321528d
Author: Stefan Hühner <stefan.huehner <at> openbravo.com>
Date: Thu Jul 04 19:18:54 2013 +0200
URL: http://code.openbravo.com/erp/devel/dbsm-main/rev/6634e9c133dbb44649c9a8181c4f838f4321528d [^]

Issue 24271: Add code for new import & export sample data
Changes:
- DataWriter.java, DatabaseDataIO.java:
  new optional feature to not write the <!-- primaryKeyValue --> on each line
  if not requested specifically -> no change in functionality
- Platform.java, PlatformImplBase.java:
  new optional feature to not override default values of columns with NULL
  if not requested specifically -> no change in functionality
  Without this feature if a xml datafile (or DynaBean) does not have a value
  for column and that column does has a default value, this default value was
  ignored and an explicit null value was inserted.
  This feature makes this behavior controllable.
- Two functional changes affecting existing code
  - Restore full precision of timestamps, before timestamp was cut down to
    precision of a second. This is backout of old cset: 08cd1bdfb31e
    Note: Only ADRD + new Client Definition dataset have audit columns + only
    Client Definition dataset seems to have other timestamp column so not change
    for normal AD usage (consistency check passed fine).
  - If a xml datafile has values for the audit columns (updated,updatedby,
    created,createby) then before those where ignored and replaced by '0' and now()
    From now on if the values are present they will be used, and only on missing
    values the fallback logic is invoked.
    This makes audit values from ADRD dataset used on create.datbase
    Dataset AD does not have any audit info (anymore).
- Two new ant targets are added:
  - ExportSampledata: This needs two parameters when ran: client & module
    It will take list of tables from 'Client Definition' dataset.
    However it will ignore whereclause from the dataset and always use a simple
    fixed filter for clientId only. (as dbsm can't interprete HQL)
    It will create one subfolder below (referencedata/sampledata) for the to be
    exported client (nam == cleaned-up clientname) and export all data to that folder.
    Structure is standard 1 file per table as in sourcedata.
    Exported files will not have standard primary key repeated as a comment per line
    to save one space taken.
  - ImportSampledaa: Will search in all modules for a 'referencedata/sampledata' folder.
    In all those folders will search for subfolders and assume each subfolder is one
    client containing sampledata to import.
    FK's, Triggers, Check constraint are deactivated
    Datafiles are parsed and inserted (using batchMode). Here on missing values on the xml file
    default value defined for those columns will be implicitely used).
    ModuleScripts are ran and FK's, Triggers, checks are re-activated.

---
M src/org/apache/ddlutils/Platform.java
M src/org/apache/ddlutils/io/DataWriter.java
M src/org/apache/ddlutils/io/DatabaseDataIO.java
M src/org/apache/ddlutils/io/converters/TimestampConverter.java
M src/org/apache/ddlutils/platform/PlatformImplBase.java
A src/org/openbravo/ddlutils/task/ExportSampledata.java
A src/org/openbravo/ddlutils/task/ImportSampledata.java
---
(0059880)
hgbot   
2013-07-05 01:41   
Repository: erp/devel/pi
Changeset: a1d011ef9234b10b96cb77be35586fc4c1cac740
Author: Stefan Hühner <stefan.huehner <at> openbravo.com>
Date: Thu Jul 04 21:10:05 2013 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/a1d011ef9234b10b96cb77be35586fc4c1cac740 [^]

Issue 24271: new import.sample.data - part1
Add dbsourcemanager + new internal ant targets

---
M src-db/database/build.xml
M src-db/database/lib/dbsourcemanager.jar
---
(0059881)
hgbot   
2013-07-05 01:41   
Repository: erp/devel/pi
Changeset: b0caf95aa6766fae6fffc4de34f7ac821bbafd4b
Author: Stefan Hühner <stefan.huehner <at> openbravo.com>
Date: Fri Jul 05 00:21:17 2013 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/b0caf95aa6766fae6fffc4de34f7ac821bbafd4b [^]

Issue 24271: New import sampledata - part1
Add converted version of sampledata for F&B + QA Testing client
Created from pi: revision: c708a98b9d60
Created using:
1.) install.source + export.sampledata
2.) install.source + export.sampledata
Those first two steps to remove inconsistencies happening on export.
3.) ant export.sample.data -Dclient="QA Testing" -Dmodule=org.openbravo
    ant export.sample.data -Dclient="F&B International Group" -Dmodule=org.openbravo
Note: That export.sample.data from step 3.) is from new infrastructure added in
next commits

---
A referencedata/sampledata/F_B_International_Group/AD_ALERT.xml
A referencedata/sampledata/F_B_International_Group/AD_ALERTRECIPIENT.xml
A referencedata/sampledata/F_B_International_Group/AD_ALERTRULE.xml
A referencedata/sampledata/F_B_International_Group/AD_ALERTRULE_TRL.xml
A referencedata/sampledata/F_B_International_Group/AD_CLIENT.xml
A referencedata/sampledata/F_B_International_Group/AD_CLIENTINFO.xml
A referencedata/sampledata/F_B_International_Group/AD_CLIENT_ACCTDIMENSION.xml
A referencedata/sampledata/F_B_International_Group/AD_FORM_ACCESS.xml
A referencedata/sampledata/F_B_International_Group/AD_IMAGE.xml
A referencedata/sampledata/F_B_International_Group/AD_ORG.xml
A referencedata/sampledata/F_B_International_Group/AD_ORGINFO.xml
A referencedata/sampledata/F_B_International_Group/AD_ORGMODULE.xml
A referencedata/sampledata/F_B_International_Group/AD_ORG_ACCTSCHEMA.xml
A referencedata/sampledata/F_B_International_Group/AD_ORG_CLOSING.xml
A referencedata/sampledata/F_B_International_Group/AD_ORG_WAREHOUSE.xml
A referencedata/sampledata/F_B_International_Group/AD_PINSTANCE.xml
A referencedata/sampledata/F_B_International_Group/AD_PINSTANCE_PARA.xml
A referencedata/sampledata/F_B_International_Group/AD_PREFERENCE.xml
A referencedata/sampledata/F_B_International_Group/AD_PROCESS_ACCESS.xml
A referencedata/sampledata/F_B_International_Group/AD_PROCESS_REQUEST.xml
A referencedata/sampledata/F_B_International_Group/AD_REF_DATA_LOADED.xml
A referencedata/sampledata/F_B_International_Group/AD_ROLE.xml
A referencedata/sampledata/F_B_International_Group/AD_ROLE_ORGACCESS.xml
A referencedata/sampledata/F_B_International_Group/AD_SEQUENCE.xml
A referencedata/sampledata/F_B_International_Group/AD_TREE.xml
A referencedata/sampledata/F_B_International_Group/AD_TREENODE.xml
A referencedata/sampledata/F_B_International_Group/AD_USER.xml
A referencedata/sampledata/F_B_International_Group/AD_USER_ROLES.xml
A referencedata/sampledata/F_B_International_Group/AD_WINDOW_ACCESS.xml
A referencedata/sampledata/F_B_International_Group/A_AMORTIZATION.xml
A referencedata/sampledata/F_B_International_Group/A_AMORTIZATIONLINE.xml
A referencedata/sampledata/F_B_International_Group/A_ASSET.xml
A referencedata/sampledata/F_B_International_Group/A_ASSET_ACCT.xml
A referencedata/sampledata/F_B_International_Group/A_ASSET_GROUP.xml
A referencedata/sampledata/F_B_International_Group/A_ASSET_GROUP_ACCT.xml
A referencedata/sampledata/F_B_International_Group/C_ACCTSCHEMA.xml
A referencedata/sampledata/F_B_International_Group/C_ACCTSCHEMA_DEFAULT.xml
A referencedata/sampledata/F_B_International_Group/C_ACCTSCHEMA_ELEMENT.xml
A referencedata/sampledata/F_B_International_Group/C_ACCTSCHEMA_GL.xml
A referencedata/sampledata/F_B_International_Group/C_ACCTSCHEMA_TABLE.xml
A referencedata/sampledata/F_B_International_Group/C_ACCT_RPT.xml
A referencedata/sampledata/F_B_International_Group/C_ACCT_RPT_GROUP.xml
A referencedata/sampledata/F_B_International_Group/C_ACCT_RPT_NODE.xml
A referencedata/sampledata/F_B_International_Group/C_BPARTNER.xml
A referencedata/sampledata/F_B_International_Group/C_BPARTNER_DISCOUNT.xml
A referencedata/sampledata/F_B_International_Group/C_BPARTNER_LOCATION.xml
A referencedata/sampledata/F_B_International_Group/C_BP_BANKACCOUNT.xml
A referencedata/sampledata/F_B_International_Group/C_BP_CUSTOMER_ACCT.xml
A referencedata/sampledata/F_B_International_Group/C_BP_EMPLOYEE_ACCT.xml
A referencedata/sampledata/F_B_International_Group/C_BP_GROUP.xml
A referencedata/sampledata/F_B_International_Group/C_BP_GROUP_ACCT.xml
A referencedata/sampledata/F_B_International_Group/C_BP_TAXCATEGORY.xml
A referencedata/sampledata/F_B_International_Group/C_BP_VENDOR_ACCT.xml
A referencedata/sampledata/F_B_International_Group/C_CALENDAR.xml
A referencedata/sampledata/F_B_International_Group/C_CONVERSION_RATE.xml
A referencedata/sampledata/F_B_International_Group/C_DISCOUNT.xml
A referencedata/sampledata/F_B_International_Group/C_DOCTYPE.xml
A referencedata/sampledata/F_B_International_Group/C_DOCTYPE_TRL.xml
A referencedata/sampledata/F_B_International_Group/C_ELEMENT.xml
A referencedata/sampledata/F_B_International_Group/C_ELEMENTVALUE.xml
A referencedata/sampledata/F_B_International_Group/C_ELEMENTVALUE_OPERAND.xml
A referencedata/sampledata/F_B_International_Group/C_ELEMENTVALUE_TRL.xml
A referencedata/sampledata/F_B_International_Group/C_GLITEM.xml
A referencedata/sampledata/F_B_International_Group/C_GLITEM_ACCT.xml
A referencedata/sampledata/F_B_International_Group/C_INVOICE.xml
A referencedata/sampledata/F_B_International_Group/C_INVOICELINE.xml
A referencedata/sampledata/F_B_International_Group/C_INVOICELINETAX.xml
A referencedata/sampledata/F_B_International_Group/C_INVOICESCHEDULE.xml
A referencedata/sampledata/F_B_International_Group/C_INVOICETAX.xml
A referencedata/sampledata/F_B_International_Group/C_LOCATION.xml
A referencedata/sampledata/F_B_International_Group/C_ORDER.xml
A referencedata/sampledata/F_B_International_Group/C_ORDERLINE.xml
A referencedata/sampledata/F_B_International_Group/C_ORDERLINETAX.xml
A referencedata/sampledata/F_B_International_Group/C_ORDERTAX.xml
A referencedata/sampledata/F_B_International_Group/C_ORDER_DISCOUNT.xml
A referencedata/sampledata/F_B_International_Group/C_PAYMENTTERM.xml
A referencedata/sampledata/F_B_International_Group/C_PAYMENTTERM_TRL.xml
A referencedata/sampledata/F_B_International_Group/C_PERIOD.xml
A referencedata/sampledata/F_B_International_Group/C_PERIODCONTROL.xml
A referencedata/sampledata/F_B_International_Group/C_PERIODCONTROL_LOG.xml
A referencedata/sampledata/F_B_International_Group/C_POC_DOCTYPE_TEMPLATE.xml
A referencedata/sampledata/F_B_International_Group/C_POC_EMAILDEFINITION.xml
A referencedata/sampledata/F_B_International_Group/C_REGION.xml
A referencedata/sampledata/F_B_International_Group/C_RETURN_REASON.xml
A referencedata/sampledata/F_B_International_Group/C_TAX.xml
A referencedata/sampledata/F_B_International_Group/C_TAXCATEGORY.xml
A referencedata/sampledata/F_B_International_Group/C_TAXCATEGORY_TRL.xml
A referencedata/sampledata/F_B_International_Group/C_TAX_ACCT.xml
A referencedata/sampledata/F_B_International_Group/C_TAX_TRL.xml
A referencedata/sampledata/F_B_International_Group/C_TAX_ZONE.xml
A referencedata/sampledata/F_B_International_Group/C_UOM.xml
A referencedata/sampledata/F_B_International_Group/C_UOM_TRL.xml
A referencedata/sampledata/F_B_International_Group/C_VALIDCOMBINATION.xml
A referencedata/sampledata/F_B_International_Group/C_YEAR.xml
A referencedata/sampledata/F_B_International_Group/FACT_ACCT.xml
A referencedata/sampledata/F_B_International_Group/FIN_BANKSTATEMENT.xml
A referencedata/sampledata/F_B_International_Group/FIN_BANKSTATEMENTLINE.xml
A referencedata/sampledata/F_B_International_Group/FIN_FINACC_PAYMENTMETHOD.xml
A referencedata/sampledata/F_B_International_Group/FIN_FINACC_TRANSACTION.xml
A referencedata/sampledata/F_B_International_Group/FIN_FINANCIAL_ACCOUNT.xml
A referencedata/sampledata/F_B_International_Group/FIN_FINANCIAL_ACCOUNT_ACCT.xml
A referencedata/sampledata/F_B_International_Group/FIN_MATCHING_ALGORITHM.xml
A referencedata/sampledata/F_B_International_Group/FIN_ORIG_PAYMENT_SCHEDULE.xml
A referencedata/sampledata/F_B_International_Group/FIN_ORIG_PAYM_SCHEDDETAIL.xml
A referencedata/sampledata/F_B_International_Group/FIN_PAYMENT.xml
A referencedata/sampledata/F_B_International_Group/FIN_PAYMENTMETHOD.xml
A referencedata/sampledata/F_B_International_Group/FIN_PAYMENT_DETAIL.xml
A referencedata/sampledata/F_B_International_Group/FIN_PAYMENT_PROPOSAL.xml
A referencedata/sampledata/F_B_International_Group/FIN_PAYMENT_PROP_DETAIL.xml
A referencedata/sampledata/F_B_International_Group/FIN_PAYMENT_SCHEDULE.xml
A referencedata/sampledata/F_B_International_Group/FIN_PAYMENT_SCHEDULEDETAIL.xml
A referencedata/sampledata/F_B_International_Group/FIN_PAY_EXEC_PROCESS.xml
A referencedata/sampledata/F_B_International_Group/FIN_PAY_EXEC_PROCESS_PARA.xml
A referencedata/sampledata/F_B_International_Group/FIN_RECLINE_TEMP.xml
A referencedata/sampledata/F_B_International_Group/FIN_RECONCILIATION.xml
A referencedata/sampledata/F_B_International_Group/GL_CATEGORY.xml
A referencedata/sampledata/F_B_International_Group/GL_JOURNAL.xml
A referencedata/sampledata/F_B_International_Group/GL_JOURNALBATCH.xml
A referencedata/sampledata/F_B_International_Group/GL_JOURNALLINE.xml
A referencedata/sampledata/F_B_International_Group/M_ATTRIBUTESET.xml
A referencedata/sampledata/F_B_International_Group/M_ATTRIBUTESETINSTANCE.xml
A referencedata/sampledata/F_B_International_Group/M_CONDITION_GOODS.xml
A referencedata/sampledata/F_B_International_Group/M_COSTING.xml
A referencedata/sampledata/F_B_International_Group/M_COSTING_RULE.xml
A referencedata/sampledata/F_B_International_Group/M_COSTING_RULE_INIT.xml
A referencedata/sampledata/F_B_International_Group/M_DISCOUNTSCHEMA.xml
A referencedata/sampledata/F_B_International_Group/M_DISCOUNTSCHEMALINE.xml
A referencedata/sampledata/F_B_International_Group/M_INOUT.xml
A referencedata/sampledata/F_B_International_Group/M_INOUTLINE.xml
A referencedata/sampledata/F_B_International_Group/M_INVENTORY.xml
A referencedata/sampledata/F_B_International_Group/M_INVENTORYLINE.xml
A referencedata/sampledata/F_B_International_Group/M_LOCATOR.xml
A referencedata/sampledata/F_B_International_Group/M_MATCHINV.xml
A referencedata/sampledata/F_B_International_Group/M_MATCHPO.xml
A referencedata/sampledata/F_B_International_Group/M_MOVEMENT.xml
A referencedata/sampledata/F_B_International_Group/M_MOVEMENTLINE.xml
A referencedata/sampledata/F_B_International_Group/M_PRICELIST.xml
A referencedata/sampledata/F_B_International_Group/M_PRICELIST_VERSION.xml
A referencedata/sampledata/F_B_International_Group/M_PRODUCT.xml
A referencedata/sampledata/F_B_International_Group/M_PRODUCTPRICE.xml
A referencedata/sampledata/F_B_International_Group/M_PRODUCT_ACCT.xml
A referencedata/sampledata/F_B_International_Group/M_PRODUCT_CATEGORY.xml
A referencedata/sampledata/F_B_International_Group/M_PRODUCT_CATEGORY_ACCT.xml
A referencedata/sampledata/F_B_International_Group/M_STOCK_PROPOSED.xml
A referencedata/sampledata/F_B_International_Group/M_STORAGE_DETAIL.xml
A referencedata/sampledata/F_B_International_Group/M_STORAGE_PENDING.xml
A referencedata/sampledata/F_B_International_Group/M_TRANSACTION.xml
A referencedata/sampledata/F_B_International_Group/M_TRANSACTION_COST.xml
A referencedata/sampledata/F_B_International_Group/M_WAREHOUSE.xml
A referencedata/sampledata/F_B_International_Group/M_WAREHOUSE_ACCT.xml
A referencedata/sampledata/F_B_International_Group/M_WAREHOUSE_RULE.xml
A referencedata/sampledata/F_B_International_Group/OBKMO_WIDGET_CLASS_ACCESS.xml
A referencedata/sampledata/F_B_International_Group/OBKMO_WIDGET_INSTANCE.xml
A referencedata/sampledata/F_B_International_Group/OBUIAPP_PARAMETER_VALUE.xml
A referencedata/sampledata/F_B_International_Group/OBUIAPP_PROCESS_ACCESS.xml
A referencedata/sampledata/F_B_International_Group/OBUIAPP_VIEW_ROLE_ACCESS.xml
A referencedata/sampledata/QA_Testing/AD_CLIENT.xml
A referencedata/sampledata/QA_Testing/AD_CLIENTINFO.xml
A referencedata/sampledata/QA_Testing/AD_CLIENT_ACCTDIMENSION.xml
A referencedata/sampledata/QA_Testing/AD_FORM_ACCESS.xml
A referencedata/sampledata/QA_Testing/AD_IMAGE.xml
A referencedata/sampledata/QA_Testing/AD_ORG.xml
A referencedata/sampledata/QA_Testing/AD_ORGINFO.xml
A referencedata/sampledata/QA_Testing/AD_ORG_ACCTSCHEMA.xml
A referencedata/sampledata/QA_Testing/AD_ORG_WAREHOUSE.xml
A referencedata/sampledata/QA_Testing/AD_PINSTANCE.xml
A referencedata/sampledata/QA_Testing/AD_PINSTANCE_PARA.xml
A referencedata/sampledata/QA_Testing/AD_PREFERENCE.xml
A referencedata/sampledata/QA_Testing/AD_PROCESS_ACCESS.xml
A referencedata/sampledata/QA_Testing/AD_PROCESS_REQUEST.xml
A referencedata/sampledata/QA_Testing/AD_ROLE.xml
A referencedata/sampledata/QA_Testing/AD_ROLE_ORGACCESS.xml
A referencedata/sampledata/QA_Testing/AD_SEQUENCE.xml
A referencedata/sampledata/QA_Testing/AD_TREE.xml
A referencedata/sampledata/QA_Testing/AD_TREENODE.xml
A referencedata/sampledata/QA_Testing/AD_USER.xml
A referencedata/sampledata/QA_Testing/AD_USER_ROLES.xml
A referencedata/sampledata/QA_Testing/AD_WINDOW_ACCESS.xml
A referencedata/sampledata/QA_Testing/C_ACCTSCHEMA.xml
A referencedata/sampledata/QA_Testing/C_ACCTSCHEMA_DEFAULT.xml
A referencedata/sampledata/QA_Testing/C_ACCTSCHEMA_ELEMENT.xml
A referencedata/sampledata/QA_Testing/C_ACCTSCHEMA_GL.xml
A referencedata/sampledata/QA_Testing/C_ACCTSCHEMA_TABLE.xml
A referencedata/sampledata/QA_Testing/C_BANK.xml
A referencedata/sampledata/QA_Testing/C_BANKACCOUNT.xml
A referencedata/sampledata/QA_Testing/C_BANKACCOUNT_ACCT.xml
A referencedata/sampledata/QA_Testing/C_BPARTNER.xml
A referencedata/sampledata/QA_Testing/C_BPARTNER_DISCOUNT.xml
A referencedata/sampledata/QA_Testing/C_BPARTNER_LOCATION.xml
A referencedata/sampledata/QA_Testing/C_BP_BANKACCOUNT.xml
A referencedata/sampledata/QA_Testing/C_BP_CUSTOMER_ACCT.xml
A referencedata/sampledata/QA_Testing/C_BP_GROUP.xml
A referencedata/sampledata/QA_Testing/C_BP_GROUP_ACCT.xml
A referencedata/sampledata/QA_Testing/C_BP_TAXCATEGORY.xml
A referencedata/sampledata/QA_Testing/C_BP_VENDOR_ACCT.xml
A referencedata/sampledata/QA_Testing/C_CALENDAR.xml
A referencedata/sampledata/QA_Testing/C_CASHBOOK.xml
A referencedata/sampledata/QA_Testing/C_CASHBOOK_ACCT.xml
A referencedata/sampledata/QA_Testing/C_CONVERSION_RATE.xml
A referencedata/sampledata/QA_Testing/C_DISCOUNT.xml
A referencedata/sampledata/QA_Testing/C_DOCTYPE.xml
A referencedata/sampledata/QA_Testing/C_ELEMENT.xml
A referencedata/sampledata/QA_Testing/C_ELEMENTVALUE.xml
A referencedata/sampledata/QA_Testing/C_ELEMENTVALUE_OPERAND.xml
A referencedata/sampledata/QA_Testing/C_ELEMENTVALUE_TRL.xml
A referencedata/sampledata/QA_Testing/C_GREETING.xml
A referencedata/sampledata/QA_Testing/C_GREETING_TRL.xml
A referencedata/sampledata/QA_Testing/C_INVOICE.xml
A referencedata/sampledata/QA_Testing/C_INVOICELINE.xml
A referencedata/sampledata/QA_Testing/C_INVOICELINETAX.xml
A referencedata/sampledata/QA_Testing/C_INVOICESCHEDULE.xml
A referencedata/sampledata/QA_Testing/C_INVOICETAX.xml
A referencedata/sampledata/QA_Testing/C_LOCATION.xml
A referencedata/sampledata/QA_Testing/C_ORDER.xml
A referencedata/sampledata/QA_Testing/C_ORDERLINE.xml
A referencedata/sampledata/QA_Testing/C_ORDERLINETAX.xml
A referencedata/sampledata/QA_Testing/C_ORDERTAX.xml
A referencedata/sampledata/QA_Testing/C_PAYMENTTERM.xml
A referencedata/sampledata/QA_Testing/C_PAYMENTTERM_TRL.xml
A referencedata/sampledata/QA_Testing/C_PERIOD.xml
A referencedata/sampledata/QA_Testing/C_PERIODCONTROL.xml
A referencedata/sampledata/QA_Testing/C_PERIODCONTROL_LOG.xml
A referencedata/sampledata/QA_Testing/C_POC_DOCTYPE_TEMPLATE.xml
A referencedata/sampledata/QA_Testing/C_POC_EMAILDEFINITION.xml
A referencedata/sampledata/QA_Testing/C_REMITTANCE_PARAMETER.xml
A referencedata/sampledata/QA_Testing/C_REMITTANCE_TYPE.xml
A referencedata/sampledata/QA_Testing/C_RETURN_REASON.xml
A referencedata/sampledata/QA_Testing/C_TAX.xml
A referencedata/sampledata/QA_Testing/C_TAXCATEGORY.xml
A referencedata/sampledata/QA_Testing/C_TAXCATEGORY_TRL.xml
A referencedata/sampledata/QA_Testing/C_TAX_ACCT.xml
A referencedata/sampledata/QA_Testing/C_TAX_TRL.xml
A referencedata/sampledata/QA_Testing/C_UOM.xml
A referencedata/sampledata/QA_Testing/C_UOM_TRL.xml
A referencedata/sampledata/QA_Testing/C_VALIDCOMBINATION.xml
A referencedata/sampledata/QA_Testing/C_YEAR.xml
A referencedata/sampledata/QA_Testing/FACT_ACCT.xml
A referencedata/sampledata/QA_Testing/FIN_FINACC_PAYMENTMETHOD.xml
A referencedata/sampledata/QA_Testing/FIN_FINACC_TRANSACTION.xml
A referencedata/sampledata/QA_Testing/FIN_FINANCIAL_ACCOUNT.xml
A referencedata/sampledata/QA_Testing/FIN_FINANCIAL_ACCOUNT_ACCT.xml
A referencedata/sampledata/QA_Testing/FIN_MATCHING_ALGORITHM.xml
A referencedata/sampledata/QA_Testing/FIN_ORIG_PAYMENT_SCHEDULE.xml
A referencedata/sampledata/QA_Testing/FIN_ORIG_PAYM_SCHEDDETAIL.xml
A referencedata/sampledata/QA_Testing/FIN_PAYMENT.xml
A referencedata/sampledata/QA_Testing/FIN_PAYMENTMETHOD.xml
A referencedata/sampledata/QA_Testing/FIN_PAYMENT_DETAIL.xml
A referencedata/sampledata/QA_Testing/FIN_PAYMENT_SCHEDULE.xml
A referencedata/sampledata/QA_Testing/FIN_PAYMENT_SCHEDULEDETAIL.xml
A referencedata/sampledata/QA_Testing/FIN_PAY_EXEC_PROCESS.xml
A referencedata/sampledata/QA_Testing/FIN_PAY_EXEC_PROCESS_PARA.xml
A referencedata/sampledata/QA_Testing/FIN_RECONCILIATION.xml
A referencedata/sampledata/QA_Testing/GL_CATEGORY.xml
A referencedata/sampledata/QA_Testing/M_ATTRIBUTE.xml
A referencedata/sampledata/QA_Testing/M_ATTRIBUTEINSTANCE.xml
A referencedata/sampledata/QA_Testing/M_ATTRIBUTESET.xml
A referencedata/sampledata/QA_Testing/M_ATTRIBUTESETINSTANCE.xml
A referencedata/sampledata/QA_Testing/M_ATTRIBUTEUSE.xml
A referencedata/sampledata/QA_Testing/M_ATTRIBUTEVALUE.xml
A referencedata/sampledata/QA_Testing/M_CONDITION_GOODS.xml
A referencedata/sampledata/QA_Testing/M_COSTING.xml
A referencedata/sampledata/QA_Testing/M_COSTING_RULE.xml
A referencedata/sampledata/QA_Testing/M_COSTING_RULE_INIT.xml
A referencedata/sampledata/QA_Testing/M_DISCOUNTSCHEMA.xml
A referencedata/sampledata/QA_Testing/M_DISCOUNTSCHEMALINE.xml
A referencedata/sampledata/QA_Testing/M_INOUT.xml
A referencedata/sampledata/QA_Testing/M_INOUTLINE.xml
A referencedata/sampledata/QA_Testing/M_INVENTORY.xml
A referencedata/sampledata/QA_Testing/M_INVENTORYLINE.xml
A referencedata/sampledata/QA_Testing/M_LOCATOR.xml
A referencedata/sampledata/QA_Testing/M_MATCHINV.xml
A referencedata/sampledata/QA_Testing/M_MATCHPO.xml
A referencedata/sampledata/QA_Testing/M_MOVEMENT.xml
A referencedata/sampledata/QA_Testing/M_MOVEMENTLINE.xml
A referencedata/sampledata/QA_Testing/M_OFFER.xml
A referencedata/sampledata/QA_Testing/M_OFFER_BPARTNER.xml
A referencedata/sampledata/QA_Testing/M_OFFER_PRICELIST.xml
A referencedata/sampledata/QA_Testing/M_OFFER_PRODUCT.xml
A referencedata/sampledata/QA_Testing/M_OFFER_PROD_CAT.xml
A referencedata/sampledata/QA_Testing/M_PRICELIST.xml
A referencedata/sampledata/QA_Testing/M_PRICELIST_VERSION.xml
A referencedata/sampledata/QA_Testing/M_PRODUCT.xml
A referencedata/sampledata/QA_Testing/M_PRODUCTPRICE.xml
A referencedata/sampledata/QA_Testing/M_PRODUCT_ACCT.xml
A referencedata/sampledata/QA_Testing/M_PRODUCT_CATEGORY.xml
A referencedata/sampledata/QA_Testing/M_PRODUCT_CATEGORY_ACCT.xml
A referencedata/sampledata/QA_Testing/M_RAPPEL.xml
A referencedata/sampledata/QA_Testing/M_RAPPEL_BPARTNER.xml
A referencedata/sampledata/QA_Testing/M_RAPPEL_PRODUCT.xml
A referencedata/sampledata/QA_Testing/M_RAPPEL_PRODUCTCATEGORY.xml
A referencedata/sampledata/QA_Testing/M_RAPPEL_SCALE.xml
A referencedata/sampledata/QA_Testing/M_STORAGE_DETAIL.xml
A referencedata/sampledata/QA_Testing/M_STORAGE_PENDING.xml
A referencedata/sampledata/QA_Testing/M_TRANSACTION.xml
A referencedata/sampledata/QA_Testing/M_TRANSACTION_COST.xml
A referencedata/sampledata/QA_Testing/M_WAREHOUSE.xml
A referencedata/sampledata/QA_Testing/M_WAREHOUSE_ACCT.xml
A referencedata/sampledata/QA_Testing/M_WAREHOUSE_RULE.xml
A referencedata/sampledata/QA_Testing/OBKMO_WIDGET_CLASS_ACCESS.xml
A referencedata/sampledata/QA_Testing/OBKMO_WIDGET_INSTANCE.xml
A referencedata/sampledata/QA_Testing/OBUIAPP_PROCESS_ACCESS.xml
A referencedata/sampledata/QA_Testing/OBUIAPP_VIEW_ROLE_ACCESS.xml
---
(0059882)
hgbot   
2013-07-05 01:41   
Repository: erp/devel/pi
Changeset: a5b3324cad3b93a77e1e1efc893c1d6a1f6702f8
Author: Stefan Hühner <stefan.huehner <at> openbravo.com>
Date: Thu Jul 04 21:17:03 2013 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/a5b3324cad3b93a77e1e1efc893c1d6a1f6702f8 [^]

Fixed 24271: Activate new import.sampledata
- Remove the old version of the sampledata files
- Rename import.sample.data + export.sample.data to .old
- Add import.sample.data + export.sampledata to main build.xml which
  are using the new system.

---
M build.xml
M src/build.xml
R referencedata/sampledata/F_B_International_Group.xml
R referencedata/sampledata/QA_Testing.xml
---
(0060028)
hudsonbot   
2013-07-16 14:26   
A changeset related to this issue has been promoted main and to the
Central Repository, after passing a series of tests.

Promotion changeset: https://code.openbravo.com/erp/devel/main/rev/9a5d5983399f [^]

Maturity status: Test
(0060029)
hudsonbot   
2013-07-16 14:26   
A changeset related to this issue has been promoted main and to the
Central Repository, after passing a series of tests.

Promotion changeset: https://code.openbravo.com/erp/devel/main/rev/9a5d5983399f [^]

Maturity status: Test
(0060030)
hudsonbot   
2013-07-16 14:26   
A changeset related to this issue has been promoted main and to the
Central Repository, after passing a series of tests.

Promotion changeset: https://code.openbravo.com/erp/devel/main/rev/9a5d5983399f [^]

Maturity status: Test
(0060130)
marvintm   
2013-07-19 16:10   
Reviewed