I've got a batch process that creates entities but also uses native queries to do some inserts and updates. The core of the code is below: // afboeken EntityManager lEntityManager = getReinders().createEntityManager(); EntityManagerFinderReinders.associateWithCurrentThread(lEntityManager); try { // begin a transaction lEntityManager.getTransaction().begin(); // afboeken WsOrder.MergeIntoOneSellorder lMergeIntoOneSellorder = WsOrder.mergeIntoOneSellorder(lProgressMonitor.progressListener); WsOrder.cancelIncollectables(); // commit lEntityManager.getTransaction().commit(); } finally { // rollback a transaction if (lEntityManager.getTransaction().isActive()) lEntityManager.getTransaction().rollback(); lEntityManager.close(); } Using a proxied JDBC connection, I've captured all database interaction and extracted the inserts, updates and commits. The chronological lines are below. What causes a problem is that the EM's commit call does not commit! The "[C......]" is the connection identifier and you can see there is no ending commit on the C26156 (while there is on the C19730547 for each sequence). So a new read on the table results in a lock timeout of the database. I've debugged the code and I'm 100% certain that it is the same entitymanager being used and on which the commit call is executed. [EL Config]: 2012-02-09 10:31:03.744--ServerSession(5200460)--Connection(12365668)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--connecting(DatabaseLogin( 2012-02-09 10:31:03,775 #3408356[C26156]: executeUpdate( set role javaapp1 ) returns #0: 0 2012-02-09 10:31:03,775 #2695890[C26156]: executeUpdate( set lock mode to wait 60 ) returns #0: 0 2012-02-09 10:31:03,775 #30265395[C26156]: executeUpdate( set isolation to committed read retain update locks ) returns #0: 0 [EL Config]: 2012-02-09 10:31:03.775--ServerSession(5200460)--Connection(19774731)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Connected: jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8 2012-02-09 10:32:55,958 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (0ms) 2012-02-09 10:32:55,989 #19730547[C19730547]: commit() 2012-02-09 10:32:56,036 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (16ms) 2012-02-09 10:32:56,051 #19730547[C19730547]: commit() 2012-02-09 10:32:56,114 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (0ms) 2012-02-09 10:32:56,145 #19730547[C19730547]: commit() 2012-02-09 10:32:56,909 #31323476[C26156]: executeUpdate: INSERT INTO sellorder (sellordernr, external_sellorder, tax, financialdate, transport_relationnr, to_euro, pickup_printnote, edifact_desadv_info, diskonto, address_billing, tobepaidwithin, retour, deliveryinfo, payment_agreement, checked, selldate, address_delivery, dwhmodified, wholesale, state, facture_date, reduction, inserted, delivery_date, edifact_skip, franco, packagevalue, incassodagen, billinfo_reinders, do_backorder, bez, oldsellordernr, picked, no_delivery, packaging, picklistprinted, lazylock, delivery_printnote, oldsellordernr_unique, kilos, skontodagen, edifact_desadv_send, address_reinders, edifact_invoic_info, edifact, dwhby, edifact_invoic_send, description, contactnr, sendfrom_addressnr, currencynr, enteredby_empnr, billing_addressnr, reinders_relationnr, relationnr, delivery_addressnr) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) (156ms) 2012-02-09 10:33:39,914 #24923737[C26156]: executeUpdate: INSERT INTO sellorderline (sellorderlinenr, force_fill, seqnr, backorder_amount, outlets, managestock, unmanagedamount, lazylock, price_per_unit, dwhmodified, delivery_index, comment, unbookableamount, dwhby, manual_price, reduction, backord_selllinenr, batchtype, standversionnr, sellordernr, articlenr) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) (42818ms) 2012-02-09 10:34:15,514 #24923737[C26156]: executeUpdate: INSERT INTO sellorderline (sellorderlinenr, force_fill, seqnr, backorder_amount, outlets, managestock, unmanagedamount, lazylock, price_per_unit, dwhmodified, delivery_index, comment, unbookableamount, dwhby, manual_price, reduction, backord_selllinenr, batchtype, standversionnr, sellordernr, articlenr) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) (35429ms) 2012-02-09 10:34:16,200 #6884682[C26156]: executeUpdate: update batch set batchnr = batchnr where batchnr=935021 (31ms) 2012-02-09 10:34:16,294 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (31ms) 2012-02-09 10:34:16,325 #19730547[C19730547]: commit() 2012-02-09 10:34:59,091 #26795305[C26156]: executeUpdate: insert into batchsellorderline(batchselllinenr,batchnr,sellorderlinenr,amount,dwhmodified,dwhby) values(?,?,?,?,?,?) (42703ms) 2012-02-09 10:34:59,325 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (16ms) 2012-02-09 10:34:59,356 #19730547[C19730547]: commit() 2012-02-09 10:34:59,497 #22865832[C26156]: executeUpdate: insert into article_stock_mutation(article_stock_mutationnr, articlenr, batchtypenr, storage_domainnr, amount, description, source_id, source_fk) values(1069,14545,1,1,-1,null,'SOL',12781578) (125ms) 2012-02-09 10:34:59,528 #29963414[C26156]: executeUpdate: update article_stock set amount = amount + -1 where article_stocknr = 277374 (16ms) 2012-02-09 10:34:59,840 #10253075[C26156]: executeUpdate: update batch set batchnr = batchnr where batchnr=942069 (31ms) 2012-02-09 10:34:59,902 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (0ms) 2012-02-09 10:34:59,918 #19730547[C19730547]: commit() 2012-02-09 10:35:32,878 #26795305[C26156]: executeUpdate: insert into batchsellorderline(batchselllinenr,batchnr,sellorderlinenr,amount,dwhmodified,dwhby) values(?,?,?,?,?,?) (32898ms) 22012-02-09 10:35:33,096 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (31ms) 012-02-09 10:35:33,128 #19730547[C19730547]: commit() 2012-02-09 10:35:33,221 #7962411[C26156]: executeUpdate: insert into article_stock_mutation(article_stock_mutationnr, articlenr, batchtypenr, storage_domainnr, amount, description, source_id, source_fk) values(1070,16637,51529,1,-1,null,'SOL',12781577) (62ms) 2012-02-09 10:35:33,284 #12037517[C26156]: executeUpdate: update article_stock set amount = amount + -1 where article_stocknr = 928925 (47ms) 2012-02-09 10:35:39,529 #29264254[C26156]: executeUpdate: UPDATE ws_order SET sellordernr = ?, dwhmodified = ?, sellorder_status = ? WHERE (order_id = ?) (78ms) I've also collected the whole EclipseLink logging. A simple point to pick up would be the "UPDATE ws_order"... [EL Finest]: 2012-02-09 10:31:02.778--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=javax.persistence.jdbc.user; value=informix [EL Finest]: 2012-02-09 10:31:02.794--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=javax.persistence.jdbc.password; value=xxxxxx [EL Finest]: 2012-02-09 10:31:03.354--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.target-database; value=nl.reinders.jdbc.InformixPlatform [EL Finest]: 2012-02-09 10:31:03.354--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=javax.persistence.jdbc.driver; value=nl.reinders.jdbc.ReindersInformixAndLoggingDriver [EL Finest]: 2012-02-09 10:31:03.354--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=javax.persistence.jdbc.url; value=jdbc:reinders:com.informix.jdbc.IfxDriver#jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8 [EL Finest]: 2012-02-09 10:31:03.354--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.jdbc.sequence-connection-pool; value=true [EL Finest]: 2012-02-09 10:31:03.619--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.cache.shared.default; value=false [EL Finest]: 2012-02-09 10:31:03.619--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.jdbc.native-sql; value=true [EL Finest]: 2012-02-09 10:31:03.619--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.jdbc.cache-statements; value=true [EL Finest]: 2012-02-09 10:31:03.619--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.allow-zero-id; value=true [EL Info]: 2012-02-09 10:31:03.619--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--EclipseLink, version: Eclipse Persistence Services - 2.0.2.v20100323-r6872 [EL Config]: 2012-02-09 10:31:03.65--ServerSession(5200460)--Connection(33380905)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--connecting(DatabaseLogin( [EL Config]: 2012-02-09 10:31:03.744--ServerSession(5200460)--Connection(24543166)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Connected: jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8 [EL Config]: 2012-02-09 10:31:03.744--ServerSession(5200460)--Connection(12365668)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--connecting(DatabaseLogin( [EL Config]: 2012-02-09 10:31:03.775--ServerSession(5200460)--Connection(19774731)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Connected: jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8 [EL Config]: 2012-02-09 10:31:03.806--ServerSession(5200460)--Connection(29844194)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--connecting(DatabaseLogin( [EL Config]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Connection(13412205)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Connected: jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequencing connected, state is Preallocation_Transaction_Accessor_State [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence oidnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence webordersnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellorderrangenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence producttypenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence currencynr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articletypenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationsegmentnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellorderlinenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationframenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_group_article_nr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence deliverylinenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence categorynr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_inventorynr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchtypenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stocksnapshotentrynr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchtransferlinenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_deliverylinenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_paymentenginenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence licensenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskarticlekeywordnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstandcatnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationpricerulenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence calendarnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_articlenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence catalogentrynr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articlenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence permissionnodenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standareanr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_articletype_averagenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchbuyordlinenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_outputlinenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence task_articlenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationgroup_articletypenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_articletypenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence rollentodonr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellorder_in_sellordernr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence wsaffiliatepricerulenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence buyorder_billnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchselllinenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articlepricegroupnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstand2catnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_payment_typenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationtelnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence pdaordernr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstandnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence webordersitemsnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationgroup_articlenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articlekeywordnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellordernr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence contractnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence storage_domainnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stockcountlistitemnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationgroupnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence languagenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_inventoryitemnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence orderitem_id: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence rollendonenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articletypegroupnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstandtoframenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionordernr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence article_stocknr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence buyordernr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_deliverynr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence timeframenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_productionorder_activitynr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence btwnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standversionnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskfollowupnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standtypenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence contactnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellorderline_retournr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationgroupstandnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standassignnr: preallocation size 10 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence type: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence buyorder_billlinenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskprojectnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationframecompositionnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stocksnapshotnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationgroupeannr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence deliverynr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence wsreferernr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_activitynr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence order_coupon_nr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationversionnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence article_stock_mutationnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence contractpaymentnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_inputlinenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskprioritynr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence tablename: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationsalenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchtransfernr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license2countrynr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence edifactordersitemsnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence catalognr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence addressnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence retournr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_inventoryordernr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence eanrangenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence contractpaymentlinenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchcodenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license2countrygroupnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence article2articlekeywordnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence storagenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstocknr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articlekeyword_translationnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence rollentodolinenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence countrycode2countrygroupnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence id: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskarticlestatusnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stockcountlistnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence retourlinenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence edifactordersnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence contacttelnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stockcountmutationnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence wsaffiliatenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence translationnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence employeenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence guid: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence tasknr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence licensegroupnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskstatusnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence translation2nr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_linenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence licensegrouparticletypenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence order_id: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchcountnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellexpectlinenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stockcountnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchcreditnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_payment_detailnr: preallocation size 25 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence countrygroupnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence pdaorderlinenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence groupnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_paymentnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence countrycodenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstandtypenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_stand_exceptionnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence messagenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence rollendonelinenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence reservationnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articleusesarticlenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_payment_printednr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationaliasnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellexpectnr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sleevestypenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence buyorderlinenr: preallocation size 1 [EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standmaterialnr: preallocation size 1 [EL Info]: 2012-02-09 10:31:04.242--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--reinders_url=jdbc:reinders:com.informix.jdbc.IfxDriver#jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8_user=informix login successful [EL Finer]: 2012-02-09 10:31:04.32--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Grouppermissions_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.32--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Weborders_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.32--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Sellorderrange_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Producttype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Currency_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Articletype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationSegment_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VRelationArticle_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Sellorderline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationframe_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.LicenseGroupArticle_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Deliveryline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationcat_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VRelationContactinfo_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationInventory_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchtype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StocksnapshotEntry_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchtransferline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ProductionorderDeliveryline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.LicensePaymentengineNone_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.License_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Task2Articlekeyword_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationstandCat_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationPricerule_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Calendar_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationArticle_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Catalogentry_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Sellordercat_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Article_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Permissionnode_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StandArea_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batch_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationArticletypeAverage_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchbuyorderline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ProductionorderOutputline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.TaskArticle_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationgroupArticletype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationArticletype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Rollentodo_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Addresstype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.SellorderInSellorder_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.WsAffiliatePricerule_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.BuyorderBill_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relation_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchsellorderline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ArticlePricegroup_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VArticle_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationstandToCat_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.LicensePaymentType_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationtel_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Pdaorder_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationstand_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VStandversion_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Webordersitems_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationgroupArticle_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Articlekeyword_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Sellorder_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Contract_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.TSellstandrefill_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StorageDomain_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StockcountListitem_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationgroup_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Language_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationInventoryitem_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.WsOrderitem_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Rollendone_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ArticletypeGroup_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationstandToFrame_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Productionorder_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ArticleStock_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Sellorder2Cat_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Catsubscription_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Article2Storage_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Buyorder_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ProductionorderDelivery_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Timeframe_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Webimagedownload_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationProductionorderActivity_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Btwcategory_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Employee2Group_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Standversion_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Taskfollowup_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StandType_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Contact_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.TSellstandinifill_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Producttype2Contract_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.SellorderlineRetour_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Stand_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationgroupstand_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Standassign_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Delivery2Buyorder_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Websort_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.BuyorderBillline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Taskproject_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationframeComposition_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Stocksnapshot_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationgroupean_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Delivery_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.WsReferer_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ProductionorderActivity_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.WsOrderCoupon_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VStandcurfut_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Weblightbox_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.TBatch_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationversion_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ArticleStockMutation_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Contractpayment_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ProductionorderInputline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Webdisclaimer_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Taskpriority_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Articlealias_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Cleaneduntil_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relstandsale_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchtransfer_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.License2Country_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Edifactordersitems_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Catalog_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Address_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VStandassignlastcurfut_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Retour_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationInventoryorder_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Eanrange_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Contractpaymentline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchcode_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.License2Countrygroup_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.TSellmoneycalc_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Article2Articlekeyword_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Storage_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relstandstock_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ArticlekeywordTranslation_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VSellmoney_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Article2Articlecat_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Rollentodoline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Countrycode2Countrygroup_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Locks_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.LicensePaymentengineDefault_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.TaskArticleStatus_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StockcountList_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RetourLine_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Edifactorders_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Contacttel_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StockcountMutation_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Articlecat_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.WsAffiliate_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Translation_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Employee_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.OvsInternational_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Docuware_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Task_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VRollenlist_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.LicenseGroup_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Taskstatus_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Translation2_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ProductionorderLine_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.LicenseGroupToArticletype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VaStockinfo_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.WsOrder_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VaStockinfoDomain_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.TSellorderInitialsell_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchcount_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Sellexpectline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VRelationArticletype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Stockcount_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.522--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchcredit_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.538--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.LicensePaymentDetail_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.538--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Countrygroup_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.538--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Pdaorderline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.538--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Group_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.538--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.LicensePayment_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.538--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Countrycodetable_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.538--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VStandfuture_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.538--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Addr2Addrtype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.538--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationstandType_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.538--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationStandException_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.538--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Webmessage_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.538--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Rollendoneline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.538--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Reservation_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.538--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ArticleUsesArticle_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.538--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.LicensePaymentPrinted_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.538--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationalias_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Sellexpect_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VStandcurrent_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.SleevesType_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Buyorderline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.LicensePaymentengine_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VSellmoneycalc_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Rel2Relcat_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StandMaterial_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Contractpaymentline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Cleaneduntil_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Batchcredit_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Contractpayment_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.TaskArticleStatus_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Rollentodoline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Edifactorders_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.VaStockinfoDomain_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Sellexpect_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Buyorder_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.553--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Catsubscription_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Batchsellorderline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Calendar_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Article_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.BuyorderBill_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Countrycodetable_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.VSellmoneycalc_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Weborders_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Batchtransferline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.WsAffiliate_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RelationstandToFrame_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Timeframe_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RelationstandToCat_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.LicensePayment_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Article2Storage_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Webdisclaimer_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Relstandstock_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Batch_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.569--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.VRollenlist_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RetourLine_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.OvsInternational_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Stocksnapshot_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.VRelationContactinfo_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RelationStandException_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.LicenseGroupArticle_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.VStandfuture_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.ArticleUsesArticle_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Reservation_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Webimagedownload_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Relationgroup_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Grouppermissions_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.LicensePaymentengine_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Sellordercat_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.VStandversion_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.ArticlekeywordTranslation_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Buyorderline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.TSellmoneycalc_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.584--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Contacttel_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.6--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.LicenseGroupToArticletype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.6--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.ArticleStock_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.6--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Relationgroupean_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.615--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Translation2_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.615--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.LicensePaymentDetail_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.615--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Delivery_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.615--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Article2Articlekeyword_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.615--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.ProductionorderDelivery_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.615--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.StorageDomain_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.615--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Addresstype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.ProductionorderInputline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.StockcountMutation_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RelationArticletypeAverage_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.License2Country_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.VSellmoney_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.ArticletypeGroup_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.VRelationArticle_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Sellorderrange_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RelationstandCat_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Permissionnode_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RelationArticle_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RelationSegment_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Rollendone_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Websort_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Sellorderline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Btwcategory_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.VStandcurrent_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Pdaorder_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.631--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Weblightbox_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.StandType_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RelationProductionorderActivity_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.TSellstandrefill_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.WsOrderitem_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Translation_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Pdaorderline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RelationgroupArticle_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.TSellorderInitialsell_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Catalogentry_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Contact_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.WsOrderCoupon_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.ArticlePricegroup_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.WsAffiliatePricerule_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Task2Articlekeyword_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Relationcat_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Batchtransfer_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.SleevesType_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.646--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Group_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Relationversion_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Standassign_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Standversion_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Employee_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Task_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Eanrange_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Batchcode_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.VStandcurfut_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Webordersitems_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RelationInventory_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Sellexpectline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Stand_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.LicenseGroup_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Producttype2Contract_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Articletype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.SellorderInSellorder_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Address_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Storage_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.662--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Stockcount_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.678--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Batchbuyorderline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.678--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.ArticleStockMutation_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.678--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.TSellstandinifill_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.678--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Relation_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.678--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.StockcountList_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.678--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.AbstractBean_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.678--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.VRelationArticletype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.678--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.WsOrder_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.678--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Taskfollowup_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.678--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Addr2Addrtype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.678--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Language_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.678--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Relationalias_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.678--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Relationtel_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.678--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.VArticle_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.678--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.knowledgeplaza.util.AbstractBean_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Edifactordersitems_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Relationframe_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Deliveryline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Sellorder_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Countrycode2Countrygroup_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.WsReferer_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.License2Countrygroup_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Relationstand_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RelationPricerule_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Articlealias_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.StandMaterial_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Articlekeyword_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Rollendoneline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Currency_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Sellorder2Cat_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.BuyorderBillline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Delivery2Buyorder_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.693--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.LicensePaymentPrinted_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Retour_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.ProductionorderDeliveryline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.LicensePaymentType_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.ProductionorderLine_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Articlecat_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.License_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Article2Articlecat_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Batchcount_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RelationArticletype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.ProductionorderActivity_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Producttype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Locks_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Taskpriority_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.ProductionorderOutputline_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.TBatch_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Webmessage_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Countrygroup_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.709--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.StockcountListitem_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.StocksnapshotEntry_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.VaStockinfo_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.SellorderlineRetour_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Productionorder_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RelationstandType_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Catalog_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Docuware_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RelationframeComposition_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Rollentodo_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Batchtype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RelationInventoryorder_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Taskstatus_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Rel2Relcat_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Relationgroupstand_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Taskproject_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Contract_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RelationInventoryitem_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Employee2Group_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.724--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.Relstandsale_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.74--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.RelationgroupArticletype_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.74--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.StandArea_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.74--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.TaskArticle_] not found during initialization. [EL Finer]: 2012-02-09 10:31:04.74--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.generated.VStandassignlastcurfut_] not found during initialization. [EL Finest]: 2012-02-09 10:31:04.74--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--End deploying Persistence Unit reinders; session reinders_url=jdbc:reinders:com.informix.jdbc.IfxDriver#jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8_user=informix; state Deployed; factoryCount 1 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 15050376 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 18363234 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 30773907 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 9045331 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 23308318 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 28465579 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 1904211 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 26702434 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 30837505 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 4191154 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 9985673 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 23496221 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 32439158 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 12523926 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 2680847 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 26956472 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 5485564 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 21849749 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 9036734 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 13041256 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 6852475 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 10742006 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 18064421 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 8235757 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 6346467 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 29099940 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 26861426 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 18674095 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 20921769 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 15280131 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 21106871 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 5726746 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 15309353 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 8918505 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 5670325 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 6568065 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 28949536 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 15599070 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 12805263 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 33498681 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 2530169 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 11085584 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 21204173 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 30473976 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 1280841 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 18715077 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 5057394 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 6244741 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 30662888 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 22199027 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 7331210 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 3779313 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 387762 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 7570835 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 4620386 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 9877667 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 20183696 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 25629681 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 19806759 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 32237167 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 6654880 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 11659486 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 3107604 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 18813976 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 23096486 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 24983612 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 32959463 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 33140109 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 15796242 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 4776584 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 17861737 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 24280983 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 1485264 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 31896436 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 17805761 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 23014608 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 24589939 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 26722029 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 24625299 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 17049328 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 26764132 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 27618116 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 19219547 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 27977540 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 20267523 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 25234168 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 16204391 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 19439530 [EL Finer]: 2012-02-09 10:31:04.818--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 692759 [EL Finer]: 2012-02-09 10:31:04.833--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 33382540 [EL Finer]: 2012-02-09 10:31:04.833--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 30253041 [EL Finer]: 2012-02-09 10:31:04.833--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 12556692 [EL Finer]: 2012-02-09 10:31:04.833--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 16501795 [EL Finer]: 2012-02-09 10:31:04.833--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 18290577 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 17586734 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 32810085 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 5575706 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 26923732 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 25649727 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 21186590 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 3402456 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 8329304 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 1531280 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 33536726 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 4406721 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 9137123 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 22555479 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 25528455 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 29777671 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 8964237 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 2546355 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 14692431 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 8637812 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 19245599 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 29622999 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 26653385 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 11778380 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 21640485 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 15143904 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 13231077 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 9504296 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 19620807 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 27504865 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 28419704 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 2631870 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 9105087 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 20998389 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 27976924 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 9910210 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 30255107 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 13724471 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 14030453 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 22843935 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 8206355 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 15500382 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 31869506 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 1394039 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 8633078 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 6784348 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 6580104 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 29961367 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 9339894 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 7970362 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 8582702 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 32537500 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 21198631 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 4441598 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 24884791 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 16257052 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 32095888 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 14542873 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 11591552 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 2190503 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 6582275 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 32903335 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 29326423 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 8146770 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 20686933 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 27826008 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 23610495 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 6877080 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 21626371 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 12810930 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 28066211 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 608430 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 25339625 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 10241598 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 29856725 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 29017462 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 16376726 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 30185372 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 16094233 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 13514349 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 5719318 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 24687311 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 19092105 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 33544806 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 5997169 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 30464335 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 7011987 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 7310884 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 31256094 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 26555161 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 5104233 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 21720868 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 23971584 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 2349027 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 20089239 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 15157588 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 8348334 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 19371774 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 2765729 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 10723994 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 17316646 [EL Finer]: 2012-02-09 10:31:04.864--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--acquire unit of work: 23288337 [EL Finer]: 2012-02-09 10:31:04.88--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--client acquired [EL Finest]: 2012-02-09 10:31:04.911--UnitOfWork(28595794)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Execute query ReadObjectQuery(referenceClass=Employee sql="SELECT employeenr, lazylock, dwhmodified, dwhby, name FROM employee WHERE (employeenr = ?)") [EL Fine]: 2012-02-09 10:31:04.911--ServerSession(5200460)--Connection(19774731)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--SELECT employeenr, lazylock, dwhmodified, dwhby, name FROM employee WHERE (employeenr = ?) bind => [69] [EL Finer]: 2012-02-09 10:32:11.335--ServerSession(5200460)--Thread(Thread[Thread-14,6,main])--client acquired [EL Finer]: 2012-02-09 10:32:48.851--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--begin transaction [EL Finest]: 2012-02-09 10:32:48.851--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadAllQuery(referenceClass=Sellorderrange sql="SELECT sellorderrangenr, to, from, prefix FROM sellorderrange WHERE (prefix = ?) ORDER BY from ASC") [EL Fine]: 2012-02-09 10:32:48.882--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT sellorderrangenr, to, from, prefix FROM sellorderrange WHERE (prefix = ?) ORDER BY from ASC bind => [W12] [EL Finest]: 2012-02-09 10:32:48.944--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadAllQuery(referenceClass=WsOrder sql="SELECT order_id, shipment_id, send_country, bill_zipcode, payment_id, trackurl, lang, send_zipcode, paymentprice, shipmentname, status_id, trackcode, sellorder_billnr, sellordernr, internal_notes, sellorder_status, return_sellordernr, affiliate, shipmentprice, create_date, dwhmodified, client_name, send_city, extid, facture_date, bill_address, bill_country, return_facture_date, sellorder_return_billnr, bill_city, refer, sellorder_returndate, client_email, comments, send_name, deleted, sellorder_finisheddate, paymentname, send_address, present, modify_date, dwhby, client_id, order_date, currencycode FROM ws_order WHERE ((status_id = ?) AND (sellorder_status = ?)) ORDER BY order_id ASC") [EL Fine]: 2012-02-09 10:32:48.944--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT order_id, shipment_id, send_country, bill_zipcode, payment_id, trackurl, lang, send_zipcode, paymentprice, shipmentname, status_id, trackcode, sellorder_billnr, sellordernr, internal_notes, sellorder_status, return_sellordernr, affiliate, shipmentprice, create_date, dwhmodified, client_name, send_city, extid, facture_date, bill_address, bill_country, return_facture_date, sellorder_return_billnr, bill_city, refer, sellorder_returndate, client_email, comments, send_name, deleted, sellorder_finisheddate, paymentname, send_address, present, modify_date, dwhby, client_id, order_date, currencycode FROM ws_order WHERE ((status_id = ?) AND (sellorder_status = ?)) ORDER BY order_id ASC bind => [2, 0] [EL Finest]: 2012-02-09 10:32:49.069--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(referenceClass=Relation sql="SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto , bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?)") [EL Fine]: 2012-02-09 10:32:49.069--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?) bind => [5] [EL Finest]: 2012-02-09 10:32:49.225--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadAllQuery(name="iAddressesWhereIAmRelation" referenceClass=Address ) [EL Fine]: 2012-02-09 10:32:49.225--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT addressnr, lat, countrycodenr, isbilling, isbuyorderdefault, relationnr, street, isdeliverydefault, isdelivery, isvisiting, isbuyorder, isvisitingdefault, lazylock, active, dwhmodified, zip, isbillingdefault, addressname, lon, dwhby, city FROM address WHERE (relationnr = ?) bind => [5] [EL Finest]: 2012-02-09 10:32:49.303--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iCountrycode" referenceClass=Countrycodetable ) [EL Fine]: 2012-02-09 10:32:49.303--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT countrycodenr, lazylock, is_eu, report_countrycodenr, dwhmodified, dwhby, description, countrycode, grootboeknr_offset FROM countrycodetable WHERE (countrycodenr = ?) bind => [1] [EL Finest]: 2012-02-09 10:32:49.334--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iCurrency" referenceClass=Currency ) [EL Fine]: 2012-02-09 10:32:49.334--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT currencynr, lazylock, label, to_euro, dwhmodified, dwhby, iso4271code, description FROM currencytable WHERE (currencynr = ?) bind => [1] [EL Finest]: 2012-02-09 10:32:49.396--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(referenceClass=Relation sql="SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto , bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?)") [EL Fine]: 2012-02-09 10:32:49.396--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?) bind => [3] [EL Finest]: 2012-02-09 10:32:49.458--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadAllQuery(name="iAddressesWhereIAmRelation" referenceClass=Address sql="SELECT addressnr, lat, countrycodenr, isbilling, isbuyorderdefault, relationnr, street, isdeliverydefault, isdelivery, isvisiting, isbuyorder, isvisitingdefault, lazylock, active, dwhmodified, zip, isbillingdefault, addressname, lon, dwhby, city FROM address WHERE (relationnr = ?)") [EL Fine]: 2012-02-09 10:32:49.458--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT addressnr, lat, countrycodenr, isbilling, isbuyorderdefault, relationnr, street, isdeliverydefault, isdelivery, isvisiting, isbuyorder, isvisitingdefault, lazylock, active, dwhmodified, zip, isbillingdefault, addressname, lon, dwhby, city FROM address WHERE (relationnr = ?) bind => [3] [EL Finest]: 2012-02-09 10:32:49.521--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iRelation" referenceClass=Relation ) [EL Finest]: 2012-02-09 10:32:49.521--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iCountrycode" referenceClass=Countrycodetable ) [EL Finest]: 2012-02-09 10:32:49.521--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadAllQuery(name="iRelationtelsWhereIAmRelation" referenceClass=Relationtel ) [EL Fine]: 2012-02-09 10:32:49.521--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT relationtelnr, dwhmodified, def_phone, def_fax, visitingorder, lazylock, dwhby, telnumber, description, relationnr, _telnumber FROM relationtel WHERE (relationnr = ?) bind => [3] [EL Finest]: 2012-02-09 10:32:49.63--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBtw" referenceClass=Btwcategory ) [EL Fine]: 2012-02-09 10:32:49.645--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT btwnr, dwhmodified, lazylock, dwhby, percentage, description FROM btwcategory WHERE (btwnr = ?) bind => [1] [EL Finest]: 2012-02-09 10:32:49.677--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadAllQuery(name="iWsOrderitemsWhereIAmWsOrder" referenceClass=WsOrderitem ) [EL Fine]: 2012-02-09 10:32:49.677--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT orderitem_id, article_id, price, article_no, amount, article_name, tax, return_amount, dwhmodified, article_desc, order_id, dwhby, extid, guarantee_months, exclude FROM ws_orderitem WHERE (order_id = ?) bind => [2874] [EL Finest]: 2012-02-09 10:32:49.755--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(referenceClass=Article sql="SELECT articlenr, sale, opwebdate, weight, veer, sellingprice, seqnr, rolkop, webshopprice, keywords, width, artist, opweb, is_landscape, ean, f, c, info, dwhmodified, trashcan, last_supplier_relationnr, printcost_articletypenr, inserted, actueel, minimalstock_plano, articlecode, haslicenses, archive_location, managestock, std_reservation, articlepricegroupnr, tapper, fixed_transfer_price, rolinstellingenok, length, lazylock, opwebshop, is_ending, dwhby, description, minimalstock, articletypenr FROM article WHERE (articlenr = ?)") [EL Fine]: 2012-02-09 10:32:49.755--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT articlenr, sale, opwebdate, weight, veer, sellingprice, seqnr, rolkop, webshopprice, keywords, width, artist, opweb, is_landscape, ean, f, c, info, dwhmodified, trashcan, last_supplier_relationnr, printcost_articletypenr, inserted, actueel, minimalstock_plano, articlecode, haslicenses, archive_location, managestock, std_reservation, articlepricegroupnr, tapper, fixed_transfer_price, rolinstellingenok, length, lazylock, opwebshop, is_ending, dwhby, description, minimalstock, articletypenr FROM article WHERE (articlenr = ?) bind => [16637] [EL Finest]: 2012-02-09 10:32:49.817--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iLastSupplierRelation" referenceClass=Relation ) [EL Fine]: 2012-02-09 10:32:49.817--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?) bind => [100290] [EL Finest]: 2012-02-09 10:32:50.581--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadAllQuery(name="iRelationPricerulesWhereIAmRelation" referenceClass=RelationPricerule ) [EL Fine]: 2012-02-09 10:32:50.581--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT relationpricerulenr, valid_until, stand_code_expr, article_isreinders_expr, price, price_delta, article_width_expr, lazylock, article_type_expr, stand_id_expr, batch_type_expr, percentage, relationnr, seqnr, article_supplier_expr, valid_from, dwhmodified, article_nr_expr, sold_amount_expr, stand_version_expr, article_length_expr, dwhby FROM relation_pricerule WHERE (relationnr = ?) bind => [5] [EL Finest]: 2012-02-09 10:32:50.83--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iArticletype" referenceClass=Articletype ) [EL Fine]: 2012-02-09 10:32:50.83--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT articletypenr, lazylock, grootboeknr, sizedescription, seqnr, dwhmodified, articletypegroupnr, dwhby, op_web, pricerulecode, description, template_article_xml, grootboeknr_offset, code FROM articletype WHERE (articletypenr = ?) bind => [34] [EL Finest]: 2012-02-09 10:32:50.908--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadAllQuery(name="iArticle2ArticlecatsWhereIAmArticle" referenceClass=Article2Articlecat ) [EL Fine]: 2012-02-09 10:32:50.908--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT oidnr, dwhmodified, categorynr, lazylock, dwhby, articlenr FROM article2articlecat WHERE (articlenr = ?) bind => [16637] [EL Finest]: 2012-02-09 10:32:50.97--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iCategory" referenceClass=Articlecat ) [EL Fine]: 2012-02-09 10:32:50.97--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT categorynr, dwhmodified, lazylock, dwhby, description FROM articlecat WHERE (categorynr = ?) bind => [8] [EL Finest]: 2012-02-09 10:32:51.017--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iCategory" referenceClass=Articlecat ) [EL Fine]: 2012-02-09 10:32:51.017--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT categorynr, dwhmodified, lazylock, dwhby, description FROM articlecat WHERE (categorynr = ?) bind => [1001] [EL Finest]: 2012-02-09 10:32:51.033--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataReadQuery(sql="select min(relationnr) from articlealias where active != 0 and articlenr = 16637") [EL Fine]: 2012-02-09 10:32:51.033--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--select min(relationnr) from articlealias where active != 0 and articlenr = 16637 [EL Finest]: 2012-02-09 10:32:52.046--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(referenceClass=Article sql="SELECT articlenr, sale, opwebdate, weight, veer, sellingprice, seqnr, rolkop, webshopprice, keywords, width, artist, opweb, is_landscape, ean, f, c, info, dwhmodified, trashcan, last_supplier_relationnr, printcost_articletypenr, inserted, actueel, minimalstock_plano, articlecode, haslicenses, archive_location, managestock, std_reservation, articlepricegroupnr, tapper, fixed_transfer_price, rolinstellingenok, length, lazylock, opwebshop, is_ending, dwhby, description, minimalstock, articletypenr FROM article WHERE (articlenr = ?)") [EL Fine]: 2012-02-09 10:32:52.061--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT articlenr, sale, opwebdate, weight, veer, sellingprice, seqnr, rolkop, webshopprice, keywords, width, artist, opweb, is_landscape, ean, f, c, info, dwhmodified, trashcan, last_supplier_relationnr, printcost_articletypenr, inserted, actueel, minimalstock_plano, articlecode, haslicenses, archive_location, managestock, std_reservation, articlepricegroupnr, tapper, fixed_transfer_price, rolinstellingenok, length, lazylock, opwebshop, is_ending, dwhby, description, minimalstock, articletypenr FROM article WHERE (articlenr = ?) bind => [14545] [EL Finest]: 2012-02-09 10:32:52.092--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iLastSupplierRelation" referenceClass=Relation ) [EL Finest]: 2012-02-09 10:32:52.124--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iArticletype" referenceClass=Articletype ) [EL Fine]: 2012-02-09 10:32:52.124--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT articletypenr, lazylock, grootboeknr, sizedescription, seqnr, dwhmodified, articletypegroupnr, dwhby, op_web, pricerulecode, description, template_article_xml, grootboeknr_offset, code FROM articletype WHERE (articletypenr = ?) bind => [37] [EL Finest]: 2012-02-09 10:32:52.139--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadAllQuery(name="iArticle2ArticlecatsWhereIAmArticle" referenceClass=Article2Articlecat sql="SELECT oidnr, dwhmodified, categorynr, lazylock, dwhby, articlenr FROM article2articlecat WHERE (articlenr = ?)") [EL Fine]: 2012-02-09 10:32:52.139--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT oidnr, dwhmodified, categorynr, lazylock, dwhby, articlenr FROM article2articlecat WHERE (articlenr = ?) bind => [14545] [EL Finest]: 2012-02-09 10:32:52.186--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iCategory" referenceClass=Articlecat ) [EL Finest]: 2012-02-09 10:32:52.186--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iCategory" referenceClass=Articlecat ) [EL Finest]: 2012-02-09 10:32:52.186--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataReadQuery(sql="select min(relationnr) from articlealias where active != 0 and articlenr = 14545") [EL Fine]: 2012-02-09 10:32:52.186--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--select min(relationnr) from articlealias where active != 0 and articlenr = 14545 [EL Finest]: 2012-02-09 10:32:52.264--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--No data:02000 - null [EL Finest]: 2012-02-09 10:32:52.513--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(referenceClass=StorageDomain sql="SELECT storage_domainnr, lazylock, relationnr, dwhmodified, dwhby, description FROM storage_domain WHERE (storage_domainnr = ?)") [EL Fine]: 2012-02-09 10:32:52.513--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT storage_domainnr, lazylock, relationnr, dwhmodified, dwhby, description FROM storage_domain WHERE (storage_domainnr = ?) bind => [1] [EL Finest]: 2012-02-09 10:32:52.544--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iArticletypegroup" referenceClass=ArticletypeGroup ) [EL Fine]: 2012-02-09 10:32:52.544--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT articletypegroupnr, dwhmodified, lazylock, dwhby, op_web, description, seqnr FROM articletype_group WHERE (articletypegroupnr = ?) bind => [8] [EL Finest]: 2012-02-09 10:32:52.622--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReportQuery(referenceClass=VStandcurrent sql="SELECT t0.standassignnr, t0.change_indicator, t0.ending2, t0.ending, t0.standversionnr, t0.lazylock, t0.single_sleeves, t0.articlenr, t0.unitprice, t0.assignean, t0.dwhmodified, t0.dwhby, t0.code, t0.batchtype FROM standassign t0, v_standcurrent t2, standversion t1 WHERE ((t0.articlenr = ?) AND ((t1.standversionnr = t2.standversionnr) AND (t0.standversionnr = t1.standversionnr)))") [EL Fine]: 2012-02-09 10:32:52.622--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT t0.standassignnr, t0.change_indicator, t0.ending2, t0.ending, t0.standversionnr, t0.lazylock, t0.single_sleeves, t0.articlenr, t0.unitprice, t0.assignean, t0.dwhmodified, t0.dwhby, t0.code, t0.batchtype FROM standassign t0, v_standcurrent t2, standversion t1 WHERE ((t0.articlenr = ?) AND ((t1.standversionnr = t2.standversionnr) AND (t0.standversionnr = t1.standversionnr))) bind => [16637] [EL Finest]: 2012-02-09 10:32:53.76--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iArticle" referenceClass=Article ) [EL Finest]: 2012-02-09 10:32:53.76--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:32:53.76--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [1] [EL Finest]: 2012-02-09 10:32:53.823--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadAllQuery(referenceClass=VaStockinfoDomain sql="SELECT oid, buyordernr, orderedamount, batchamount, articlenr, storage_domainnr, batchtype FROM va_stockinfo_domain WHERE (((articlenr = ?) AND (batchtype = ?)) AND (storage_domainnr = ?))") [EL Fine]: 2012-02-09 10:32:53.838--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT oid, buyordernr, orderedamount, batchamount, articlenr, storage_domainnr, batchtype FROM va_stockinfo_domain WHERE (((articlenr = ?) AND (batchtype = ?)) AND (storage_domainnr = ?)) bind => [16637, 1, 1] [EL Finest]: 2012-02-09 10:32:54.352--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(referenceClass=Batchtype sql="SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?)") [EL Fine]: 2012-02-09 10:32:54.352--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [2] [EL Finest]: 2012-02-09 10:32:54.384--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadAllQuery(referenceClass=VaStockinfoDomain sql="SELECT oid, buyordernr, orderedamount, batchamount, articlenr, storage_domainnr, batchtype FROM va_stockinfo_domain WHERE (((articlenr = ?) AND (batchtype = ?)) AND (storage_domainnr = ?))") [EL Fine]: 2012-02-09 10:32:54.384--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT oid, buyordernr, orderedamount, batchamount, articlenr, storage_domainnr, batchtype FROM va_stockinfo_domain WHERE (((articlenr = ?) AND (batchtype = ?)) AND (storage_domainnr = ?)) bind => [16637, 2, 1] [EL Finest]: 2012-02-09 10:32:54.446--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(referenceClass=Batchtype sql="SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?)") [EL Finest]: 2012-02-09 10:32:54.446--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadAllQuery(referenceClass=VaStockinfoDomain sql="SELECT oid, buyordernr, orderedamount, batchamount, articlenr, storage_domainnr, batchtype FROM va_stockinfo_domain WHERE (((articlenr = ?) AND (batchtype = ?)) AND (storage_domainnr = ?))") [EL Fine]: 2012-02-09 10:32:54.446--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT oid, buyordernr, orderedamount, batchamount, articlenr, storage_domainnr, batchtype FROM va_stockinfo_domain WHERE (((articlenr = ?) AND (batchtype = ?)) AND (storage_domainnr = ?)) bind => [16637, 1, 1] [EL Finest]: 2012-02-09 10:32:54.493--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadAllQuery(referenceClass=VaStockinfoDomain sql="SELECT oid, buyordernr, orderedamount, batchamount, articlenr, storage_domainnr, batchtype FROM va_stockinfo_domain WHERE ((articlenr = ?) AND (storage_domainnr = ?))") [EL Fine]: 2012-02-09 10:32:54.493--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT oid, buyordernr, orderedamount, batchamount, articlenr, storage_domainnr, batchtype FROM va_stockinfo_domain WHERE ((articlenr = ?) AND (storage_domainnr = ?)) bind => [16637, 1] [EL Finest]: 2012-02-09 10:32:54.524--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Finest]: 2012-02-09 10:32:54.54--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:32:54.54--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [51529] [EL Finest]: 2012-02-09 10:32:54.555--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(referenceClass=StorageDomain sql="SELECT storage_domainnr, lazylock, relationnr, dwhmodified, dwhby, description FROM storage_domain WHERE (storage_domainnr = ?)") [EL Finest]: 2012-02-09 10:32:54.555--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iArticletypegroup" referenceClass=ArticletypeGroup ) [EL Finest]: 2012-02-09 10:32:54.555--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReportQuery(referenceClass=VStandcurrent sql="SELECT t0.standassignnr, t0.change_indicator, t0.ending2, t0.ending, t0.standversionnr, t0.lazylock, t0.single_sleeves, t0.articlenr, t0.unitprice, t0.assignean, t0.dwhmodified, t0.dwhby, t0.code, t0.batchtype FROM standassign t0, v_standcurrent t2, standversion t1 WHERE ((t0.articlenr = ?) AND ((t1.standversionnr = t2.standversionnr) AND (t0.standversionnr = t1.standversionnr)))") [EL Fine]: 2012-02-09 10:32:54.555--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT t0.standassignnr, t0.change_indicator, t0.ending2, t0.ending, t0.standversionnr, t0.lazylock, t0.single_sleeves, t0.articlenr, t0.unitprice, t0.assignean, t0.dwhmodified, t0.dwhby, t0.code, t0.batchtype FROM standassign t0, v_standcurrent t2, standversion t1 WHERE ((t0.articlenr = ?) AND ((t1.standversionnr = t2.standversionnr) AND (t0.standversionnr = t1.standversionnr))) bind => [14545] [EL Finest]: 2012-02-09 10:32:54.695--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iArticle" referenceClass=Article ) [EL Finest]: 2012-02-09 10:32:54.695--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Finest]: 2012-02-09 10:32:54.711--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadAllQuery(referenceClass=VaStockinfoDomain sql="SELECT oid, buyordernr, orderedamount, batchamount, articlenr, storage_domainnr, batchtype FROM va_stockinfo_domain WHERE (((articlenr = ?) AND (batchtype = ?)) AND (storage_domainnr = ?))") [EL Fine]: 2012-02-09 10:32:54.711--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT oid, buyordernr, orderedamount, batchamount, articlenr, storage_domainnr, batchtype FROM va_stockinfo_domain WHERE (((articlenr = ?) AND (batchtype = ?)) AND (storage_domainnr = ?)) bind => [14545, 1, 1] [EL Finest]: 2012-02-09 10:32:55.256--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Finer]: 2012-02-09 10:32:55.927--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--begin transaction [EL Finest]: 2012-02-09 10:32:55.927--ClientSession(10595825)--Thread(Thread[Thread-14,6,main])--Execute query DataModifyQuery(sql="UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ?") [EL Fine]: 2012-02-09 10:32:55.942--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? bind => [1, sellorderlinenr] [EL Finest]: 2012-02-09 10:32:55.958--ClientSession(10595825)--Thread(Thread[Thread-14,6,main])--Execute query ValueReadQuery(sql="SELECT seq_count FROM sequence WHERE seq_name = ?") [EL Fine]: 2012-02-09 10:32:55.973--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--SELECT seq_count FROM sequence WHERE seq_name = ? bind => [sellorderlinenr] [EL Finer]: 2012-02-09 10:32:55.989--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--commit transaction [EL Finer]: 2012-02-09 10:32:56.005--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--begin transaction [EL Finest]: 2012-02-09 10:32:56.02--ClientSession(10595825)--Thread(Thread[Thread-14,6,main])--Execute query DataModifyQuery(sql="UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ?") [EL Fine]: 2012-02-09 10:32:56.02--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? bind => [1, sellorderlinenr] [EL Finest]: 2012-02-09 10:32:56.036--ClientSession(10595825)--Thread(Thread[Thread-14,6,main])--Execute query ValueReadQuery(sql="SELECT seq_count FROM sequence WHERE seq_name = ?") [EL Fine]: 2012-02-09 10:32:56.036--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--SELECT seq_count FROM sequence WHERE seq_name = ? bind => [sellorderlinenr] [EL Finer]: 2012-02-09 10:32:56.051--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--commit transaction [EL Finest]: 2012-02-09 10:32:56.083--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--PERSIST operation called on: nl.reinders.bm.Sellorderline@15e194a&Sellorderlinenr=12781577&amount.alloc=1&amount=0&unmanaged_amount=0&backorder_amount=0&article.nr=.16637&price=9.90. [EL Finest]: 2012-02-09 10:32:56.083--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--PERSIST operation called on: nl.reinders.bm.Sellorderline@1c8893a&Sellorderlinenr=12781578&amount.alloc=1&amount=0&unmanaged_amount=0&backorder_amount=0&article.nr=.14545&price=14.85. [EL Finest]: 2012-02-09 10:32:56.083--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--PERSIST operation called on: nl.reinders.bm.Sellorder@1c02565&Sellordernr=null. [EL Finer]: 2012-02-09 10:32:56.083--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--begin transaction [EL Finest]: 2012-02-09 10:32:56.098--ClientSession(10595825)--Thread(Thread[Thread-14,6,main])--Execute query DataModifyQuery(sql="UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ?") [EL Fine]: 2012-02-09 10:32:56.098--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? bind => [1, sellordernr] [EL Finest]: 2012-02-09 10:32:56.129--ClientSession(10595825)--Thread(Thread[Thread-14,6,main])--Execute query ValueReadQuery(sql="SELECT seq_count FROM sequence WHERE seq_name = ?") [EL Fine]: 2012-02-09 10:32:56.129--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--SELECT seq_count FROM sequence WHERE seq_name = ? bind => [sellordernr] [EL Finer]: 2012-02-09 10:32:56.145--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--commit transaction [EL Finest]: 2012-02-09 10:32:56.16--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--assign sequence to the object (301,243 -> nl.reinders.bm.Sellorder@1c02565&Sellordernr=null) [EL Finest]: 2012-02-09 10:32:56.192--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query InsertObjectQuery(nl.reinders.bm.Sellorder@1c02565&Sellordernr=301243) [EL Fine]: 2012-02-09 10:32:56.207--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--INSERT INTO sellorder (sellordernr, external_sellorder, tax, financialdate, transport_relationnr, to_euro, pickup_printnote, edifact_desadv_info, diskonto, address_billing, tobepaidwithin, retour, deliveryinfo, payment_agreement, checked, selldate, address_delivery, dwhmodified, wholesale, state, facture_date, reduction, inserted, delivery_date, edifact_skip, franco, packagevalue, incassodagen, billinfo_reinders, do_backorder, bez, oldsellordernr, picked, no_delivery, packaging, picklistprinted, lazylock, delivery_printnote, oldsellordernr_unique, kilos, skontodagen, edifact_desadv_send, address_reinders, edifact_invoic_info, edifact, dwhby, edifact_invoic_send, description, contactnr, sendfrom_addressnr, currencynr, enteredby_empnr, billing_addressnr, reinders_relationnr, relationnr, delivery_addressnr) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) bind => [301243, null, 0.19, null, null, 1, null, null, 0.00, Hamelandroute 92 [EL Finest]: 2012-02-09 10:32:56.909--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query InsertObjectQuery(nl.reinders.bm.Sellorderline@1c8893a&Sellorderlinenr=12781578&amount.alloc=1&amount=0&unmanaged_amount=0&backorder_amount=0&article.nr=.14545&price=14.85) [EL Finest]: 2012-02-09 10:32:56.909--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query WriteObjectQuery(nl.reinders.bm.Sellorder@1c02565&Sellordernr=301243) [EL Fine]: 2012-02-09 10:32:56.924--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--INSERT INTO sellorderline (sellorderlinenr, force_fill, seqnr, backorder_amount, outlets, managestock, unmanagedamount, lazylock, price_per_unit, dwhmodified, delivery_index, comment, unbookableamount, dwhby, manual_price, reduction, backord_selllinenr, batchtype, standversionnr, sellordernr, articlenr) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) bind => [12781578, null, null, 0, null, null, 0, 1, 14.85, 2012-02-09 10:32:56.176, 1, null, 0, 69, 0, 0E-16, null, 1, null, 301243, 14545] [EL Finest]: 2012-02-09 10:33:39.929--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query InsertObjectQuery(nl.reinders.bm.Sellorderline@15e194a&Sellorderlinenr=12781577&amount.alloc=1&amount=0&unmanaged_amount=0&backorder_amount=0&article.nr=.16637&price=9.90) [EL Finest]: 2012-02-09 10:33:39.929--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query WriteObjectQuery(nl.reinders.bm.Sellorder@1c02565&Sellordernr=301243) [EL Fine]: 2012-02-09 10:33:39.929--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--INSERT INTO sellorderline (sellorderlinenr, force_fill, seqnr, backorder_amount, outlets, managestock, unmanagedamount, lazylock, price_per_unit, dwhmodified, delivery_index, comment, unbookableamount, dwhby, manual_price, reduction, backord_selllinenr, batchtype, standversionnr, sellordernr, articlenr) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) bind => [12781577, null, null, 0, null, null, 0, 1, 9.90, 2012-02-09 10:32:56.176, 1, null, 0, 69, 0, 0E-16, null, 51529, null, 301243, 16637] [EL Finest]: 2012-02-09 10:34:15.576--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataReadQuery(sql="select sum(amount) from batchsellorderline where sellorderlinenr=12781578") [EL Fine]: 2012-02-09 10:34:15.576--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--select sum(amount) from batchsellorderline where sellorderlinenr=12781578 [EL Finest]: 2012-02-09 10:34:15.654--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--No data:02000 - null [EL Finest]: 2012-02-09 10:34:15.67--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataReadQuery(sql="select batchselllinenr, amount, batchnr from batchsellorderline where sellorderlinenr=12781578 order by batchnr") [EL Fine]: 2012-02-09 10:34:15.67--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--select batchselllinenr, amount, batchnr from batchsellorderline where sellorderlinenr=12781578 order by batchnr [EL Finest]: 2012-02-09 10:34:15.686--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--No data:02000 - null [EL Finest]: 2012-02-09 10:34:15.686--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataReadQuery(sql="select batchnr from batch where articlenr=14545 and batchtype=1 and storage_domainnr=1 and _amount > 0 order by batchnr") [EL Fine]: 2012-02-09 10:34:15.686--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--select batchnr from batch where articlenr=14545 and batchtype=1 and storage_domainnr=1 and _amount > 0 order by batchnr [EL Finest]: 2012-02-09 10:34:16.169--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataModifyQuery(sql="update batch set batchnr = batchnr where batchnr=935021") [EL Fine]: 2012-02-09 10:34:16.169--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--update batch set batchnr = batchnr where batchnr=935021 [EL Finest]: 2012-02-09 10:34:16.2--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataReadQuery(sql="select _amount from batch where batchnr=935021") [EL Fine]: 2012-02-09 10:34:16.2--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--select _amount from batch where batchnr=935021 [EL Finer]: 2012-02-09 10:34:16.232--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--begin transaction [EL Finest]: 2012-02-09 10:34:16.247--ClientSession(10595825)--Thread(Thread[Thread-14,6,main])--Execute query DataModifyQuery(sql="UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ?") [EL Fine]: 2012-02-09 10:34:16.247--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? bind => [1, batchselllinenr] [EL Finest]: 2012-02-09 10:34:16.294--ClientSession(10595825)--Thread(Thread[Thread-14,6,main])--Execute query ValueReadQuery(sql="SELECT seq_count FROM sequence WHERE seq_name = ?") [EL Fine]: 2012-02-09 10:34:16.294--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--SELECT seq_count FROM sequence WHERE seq_name = ? bind => [batchselllinenr] [EL Finer]: 2012-02-09 10:34:16.31--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--commit transaction [EL Finest]: 2012-02-09 10:34:16.341--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataModifyQuery(sql="insert into batchsellorderline(batchselllinenr,batchnr,sellorderlinenr,amount,dwhmodified,dwhby) values(?,?,?,?,?,?)") [EL Fine]: 2012-02-09 10:34:16.341--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--insert into batchsellorderline(batchselllinenr,batchnr,sellorderlinenr,amount,dwhmodified,dwhby) values(?,?,?,?,?,?) bind => [11665610, 935021, 12781578, -1, 2012-02-09 10:34:16.341, 69] [EL Finest]: 2012-02-09 10:34:59.106--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataReadQuery(sql="select article_stocknr from article_stock where articlenr = 14545 and batchtypenr = 1 and storage_domainnr = 1") [EL Fine]: 2012-02-09 10:34:59.138--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--select article_stocknr from article_stock where articlenr = 14545 and batchtypenr = 1 and storage_domainnr = 1 [EL Finer]: 2012-02-09 10:34:59.278--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--begin transaction [EL Finest]: 2012-02-09 10:34:59.294--ClientSession(10595825)--Thread(Thread[Thread-14,6,main])--Execute query DataModifyQuery(sql="UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ?") [EL Fine]: 2012-02-09 10:34:59.294--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? bind => [1, article_stock_mutationnr] [EL Finest]: 2012-02-09 10:34:59.325--ClientSession(10595825)--Thread(Thread[Thread-14,6,main])--Execute query ValueReadQuery(sql="SELECT seq_count FROM sequence WHERE seq_name = ?") [EL Fine]: 2012-02-09 10:34:59.341--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--SELECT seq_count FROM sequence WHERE seq_name = ? bind => [article_stock_mutationnr] [EL Finer]: 2012-02-09 10:34:59.356--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--commit transaction [EL Finest]: 2012-02-09 10:34:59.372--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataModifyQuery(sql="insert into article_stock_mutation(article_stock_mutationnr, articlenr, batchtypenr, storage_domainnr, amount, description, source_id, source_fk) values(1069,14545,1,1,-1,null,'SOL',12781578)") [EL Fine]: 2012-02-09 10:34:59.372--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--insert into article_stock_mutation(article_stock_mutationnr, articlenr, batchtypenr, storage_domainnr, amount, description, source_id, source_fk) values(1069,14545,1,1,-1,null,SOL,12781578) [EL Finest]: 2012-02-09 10:34:59.497--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataModifyQuery(sql="update article_stock set amount = amount + -1 where article_stocknr = 277374") [EL Fine]: 2012-02-09 10:34:59.497--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--update article_stock set amount = amount + -1 where article_stocknr = 277374 [EL Finest]: 2012-02-09 10:34:59.559--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataReadQuery(sql="select sum(amount) from batchsellorderline where sellorderlinenr=12781577") [EL Fine]: 2012-02-09 10:34:59.559--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--select sum(amount) from batchsellorderline where sellorderlinenr=12781577 [EL Finest]: 2012-02-09 10:34:59.637--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--No data:02000 - null [EL Finest]: 2012-02-09 10:34:59.653--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataReadQuery(sql="select batchselllinenr, amount, batchnr from batchsellorderline where sellorderlinenr=12781577 order by batchnr") [EL Fine]: 2012-02-09 10:34:59.653--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--select batchselllinenr, amount, batchnr from batchsellorderline where sellorderlinenr=12781577 order by batchnr [EL Finest]: 2012-02-09 10:34:59.668--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--No data:02000 - null [EL Finest]: 2012-02-09 10:34:59.684--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataReadQuery(sql="select batchnr from batch where articlenr=16637 and batchtype=51529 and storage_domainnr=1 and _amount > 0 order by batchnr") [EL Fine]: 2012-02-09 10:34:59.684--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--select batchnr from batch where articlenr=16637 and batchtype=51529 and storage_domainnr=1 and _amount > 0 order by batchnr [EL Finest]: 2012-02-09 10:34:59.809--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataModifyQuery(sql="update batch set batchnr = batchnr where batchnr=942069") [EL Fine]: 2012-02-09 10:34:59.809--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--update batch set batchnr = batchnr where batchnr=942069 [EL Finest]: 2012-02-09 10:34:59.855--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataReadQuery(sql="select _amount from batch where batchnr=942069") [EL Fine]: 2012-02-09 10:34:59.855--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--select _amount from batch where batchnr=942069 [EL Finer]: 2012-02-09 10:34:59.871--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--begin transaction [EL Finest]: 2012-02-09 10:34:59.887--ClientSession(10595825)--Thread(Thread[Thread-14,6,main])--Execute query DataModifyQuery(sql="UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ?") [EL Fine]: 2012-02-09 10:34:59.887--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? bind => [1, batchselllinenr] [EL Finest]: 2012-02-09 10:34:59.902--ClientSession(10595825)--Thread(Thread[Thread-14,6,main])--Execute query ValueReadQuery(sql="SELECT seq_count FROM sequence WHERE seq_name = ?") [EL Fine]: 2012-02-09 10:34:59.902--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--SELECT seq_count FROM sequence WHERE seq_name = ? bind => [batchselllinenr] [EL Finer]: 2012-02-09 10:34:59.918--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--commit transaction [EL Finest]: 2012-02-09 10:34:59.949--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataModifyQuery(sql="insert into batchsellorderline(batchselllinenr,batchnr,sellorderlinenr,amount,dwhmodified,dwhby) values(?,?,?,?,?,?)") [EL Fine]: 2012-02-09 10:34:59.949--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--insert into batchsellorderline(batchselllinenr,batchnr,sellorderlinenr,amount,dwhmodified,dwhby) values(?,?,?,?,?,?) bind => [11665611, 942069, 12781577, -1, 2012-02-09 10:34:59.933, 69] [EL Finest]: 2012-02-09 10:35:32.893--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataReadQuery(sql="select article_stocknr from article_stock where articlenr = 16637 and batchtypenr = 51529 and storage_domainnr = 1") [EL Fine]: 2012-02-09 10:35:32.925--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--select article_stocknr from article_stock where articlenr = 16637 and batchtypenr = 51529 and storage_domainnr = 1 [EL Finer]: 2012-02-09 10:35:33.05--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--begin transaction [EL Finest]: 2012-02-09 10:35:33.065--ClientSession(10595825)--Thread(Thread[Thread-14,6,main])--Execute query DataModifyQuery(sql="UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ?") [EL Fine]: 2012-02-09 10:35:33.065--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? bind => [1, article_stock_mutationnr] [EL Finest]: 2012-02-09 10:35:33.112--ClientSession(10595825)--Thread(Thread[Thread-14,6,main])--Execute query ValueReadQuery(sql="SELECT seq_count FROM sequence WHERE seq_name = ?") [EL Fine]: 2012-02-09 10:35:33.112--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--SELECT seq_count FROM sequence WHERE seq_name = ? bind => [article_stock_mutationnr] [EL Finer]: 2012-02-09 10:35:33.128--ClientSession(10595825)--Connection(13412205)--Thread(Thread[Thread-14,6,main])--commit transaction [EL Finest]: 2012-02-09 10:35:33.143--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataModifyQuery(sql="insert into article_stock_mutation(article_stock_mutationnr, articlenr, batchtypenr, storage_domainnr, amount, description, source_id, source_fk) values(1070,16637,51529,1,-1,null,'SOL',12781577)") [EL Fine]: 2012-02-09 10:35:33.143--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--insert into article_stock_mutation(article_stock_mutationnr, articlenr, batchtypenr, storage_domainnr, amount, description, source_id, source_fk) values(1070,16637,51529,1,-1,null,SOL,12781577) [EL Finest]: 2012-02-09 10:35:33.237--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query DataModifyQuery(sql="update article_stock set amount = amount + -1 where article_stocknr = 928925") [EL Fine]: 2012-02-09 10:35:33.237--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--update article_stock set amount = amount + -1 where article_stocknr = 928925 [EL Finest]: 2012-02-09 10:35:33.315--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iSellorder" referenceClass=Sellorder ) [EL Fine]: 2012-02-09 10:35:33.315--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT sellordernr, external_sellorder, tax, financialdate, transport_relationnr, relationnr, to_euro, delivery_addressnr, billing_addressnr, pickup_printnote, edifact_desadv_info, reinders_relationnr, diskonto, address_billing, tobepaidwithin, retour, deliveryinfo, payment_agreement, checked, selldate, address_delivery, dwhmodified, wholesale, state, sendfrom_addressnr, facture_date, reduction, inserted, currencynr, delivery_date, edifact_skip, franco, packagevalue, incassodagen, billinfo_reinders, do_backorder, enteredby_empnr, bez, oldsellordernr, picked, no_delivery, packaging, picklistprinted, lazylock, delivery_printnote, oldsellordernr_unique, kilos, skontodagen, contactnr, edifact_desadv_send, address_reinders, edifact_invoic_info, edifact, dwhby, edifact_invoic_send, description FROM sellorder WHERE (sellordernr = ?) bind => [301229] [EL Finest]: 2012-02-09 10:35:33.44--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadAllQuery(name="iSellorderlinesWhereIAmSellorder" referenceClass=Sellorderline ) [EL Fine]: 2012-02-09 10:35:33.44--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT sellorderlinenr, force_fill, backord_selllinenr, seqnr, backorder_amount, outlets, _orderby, managestock, unmanagedamount, sellordernr, batchtype, standversionnr, lazylock, price_per_unit, _amount, articlenr, dwhmodified, delivery_index, comment, unbookableamount, dwhby, manual_price, reduction FROM sellorderline WHERE (sellordernr = ?) bind => [301229] [EL Finest]: 2012-02-09 10:35:33.705--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:33.705--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [36085] [EL Finest]: 2012-02-09 10:35:33.877--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:33.893--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [47611] [EL Finest]: 2012-02-09 10:35:33.924--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:33.924--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [35080] [EL Finest]: 2012-02-09 10:35:33.955--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:33.955--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [37342] [EL Finest]: 2012-02-09 10:35:33.971--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:33.971--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [36745] [EL Finest]: 2012-02-09 10:35:33.986--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Finest]: 2012-02-09 10:35:34.002--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Finest]: 2012-02-09 10:35:34.002--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Finest]: 2012-02-09 10:35:34.002--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:34.002--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [39042] [EL Finest]: 2012-02-09 10:35:34.018--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Finest]: 2012-02-09 10:35:34.018--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:34.033--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [34889] [EL Finest]: 2012-02-09 10:35:34.049--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:34.049--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [50571] [EL Finest]: 2012-02-09 10:35:34.08--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:34.08--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [38318] [EL Finest]: 2012-02-09 10:35:34.111--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Finest]: 2012-02-09 10:35:34.111--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Finest]: 2012-02-09 10:35:34.111--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:34.111--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [49054] [EL Finest]: 2012-02-09 10:35:34.142--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:34.142--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [36778] [EL Finest]: 2012-02-09 10:35:34.158--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:34.158--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [37040] [EL Finest]: 2012-02-09 10:35:34.189--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:34.189--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [45974] [EL Finest]: 2012-02-09 10:35:34.205--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:34.205--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [39005] [EL Finest]: 2012-02-09 10:35:34.236--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Finest]: 2012-02-09 10:35:34.236--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:34.236--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [48320] [EL Finest]: 2012-02-09 10:35:34.252--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:34.252--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [48082] [EL Finest]: 2012-02-09 10:35:34.283--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:34.283--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [37634] [EL Finest]: 2012-02-09 10:35:34.314--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:34.314--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [43662] [EL Finest]: 2012-02-09 10:35:34.345--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:34.345--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [39032] [EL Finest]: 2012-02-09 10:35:34.361--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Finest]: 2012-02-09 10:35:34.361--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:34.361--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [33037] [EL Finest]: 2012-02-09 10:35:34.392--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:34.392--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [37317] [EL Finest]: 2012-02-09 10:35:34.408--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadObjectQuery(name="iBatchtype" referenceClass=Batchtype ) [EL Fine]: 2012-02-09 10:35:34.408--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [35940] [EL Finest]: 2012-02-09 10:35:34.439--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadAllQuery(name="iWsOrdersWhereIAmSellorder" referenceClass=WsOrder ) [EL Fine]: 2012-02-09 10:35:34.439--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT order_id, shipment_id, send_country, bill_zipcode, payment_id, trackurl, lang, send_zipcode, paymentprice, shipmentname, status_id, trackcode, sellorder_billnr, sellordernr, internal_notes, sellorder_status, return_sellordernr, affiliate, shipmentprice, create_date, dwhmodified, client_name, send_city, extid, facture_date, bill_address, bill_country, return_facture_date, sellorder_return_billnr, bill_city, refer, sellorder_returndate, client_email, comments, send_name, deleted, sellorder_finisheddate, paymentname, send_address, present, modify_date, dwhby, client_id, order_date, currencycode FROM ws_order WHERE (sellordernr = ?) bind => [301229] [EL Finest]: 2012-02-09 10:35:34.626--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Merge clone with references nl.reinders.bm.WsOrder@df3533&OrderId=2874 [EL Finest]: 2012-02-09 10:35:34.642--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Merge clone with references nl.reinders.bm.WsOrder@df3533&OrderId=2874 [EL Finest]: 2012-02-09 10:35:34.642--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Merge clone with references nl.reinders.bm.WsOrder@df3533&OrderId=2874 [EL Finest]: 2012-02-09 10:35:34.658--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Merge clone with references nl.reinders.bm.WsOrder@df3533&OrderId=2874 [EL Finest]: 2012-02-09 10:35:39.342--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query UpdateObjectQuery(nl.reinders.bm.Sellorder@1d31e5a&Sellordernr=301229) [EL Finest]: 2012-02-09 10:35:39.373--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query UpdateObjectQuery(nl.reinders.bm.Sellorder@1c02565&Sellordernr=301243) [EL Finest]: 2012-02-09 10:35:39.373--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query UpdateObjectQuery(nl.reinders.bm.WsOrder@df3533&OrderId=2874) [EL Fine]: 2012-02-09 10:35:39.373--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--UPDATE ws_order SET sellordernr = ?, dwhmodified = ?, sellorder_status = ? WHERE (order_id = ?) bind => [301243, 2012-02-09 10:35:34.626, 10, 2874] [EL Finest]: 2012-02-09 10:36:02.793--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--Execute query ReadAllQuery(referenceClass=WsOrder sql="SELECT order_id, shipment_id, send_country, bill_zipcode, payment_id, trackurl, lang, send_zipcode, paymentprice, shipmentname, status_id, trackcode, sellorder_billnr, sellordernr, internal_notes, sellorder_status, return_sellordernr, affiliate, shipmentprice, create_date, dwhmodified, client_name, send_city, extid, facture_date, bill_address, bill_country, return_facture_date, sellorder_return_billnr, bill_city, refer, sellorder_returndate, client_email, comments, send_name, deleted, sellorder_finisheddate, paymentname, send_address, present, modify_date, dwhby, client_id, order_date, currencycode FROM ws_order WHERE (sellorder_status = ?)") [EL Fine]: 2012-02-09 10:36:02.793--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--SELECT order_id, shipment_id, send_country, bill_zipcode, payment_id, trackurl, lang, send_zipcode, paymentprice, shipmentname, status_id, trackcode, sellorder_billnr, sellordernr, internal_notes, sellorder_status, return_sellordernr, affiliate, shipmentprice, create_date, dwhmodified, client_name, send_city, extid, facture_date, bill_address, bill_country, return_facture_date, sellorder_return_billnr, bill_city, refer, sellorder_returndate, client_email, comments, send_name, deleted, sellorder_finisheddate, paymentname, send_address, present, modify_date, dwhby, client_id, order_date, currencycode FROM ws_order WHERE (sellorder_status = ?) bind => [0] [EL Finest]: 2012-02-09 10:36:02.934--ClientSession(10595825)--Connection(19774731)--Thread(Thread[Thread-14,6,main])--No data:02000 - null [EL Finer]: 2012-02-09 10:36:11.427--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--begin unit of work commit [EL Finer]: 2012-02-09 10:36:11.49--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--end unit of work commit [EL Finer]: 2012-02-09 10:36:11.506--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--resume unit of work [EL Finer]: 2012-02-09 10:36:29.554--UnitOfWork(24156444)--Thread(Thread[Thread-14,6,main])--release unit of work [EL Finer]: 2012-02-09 10:36:29.57--ClientSession(10595825)--Thread(Thread[Thread-14,6,main])--client released [EL Finer]: 2012-02-09 10:36:38.126--ServerSession(5200460)--Thread(Thread[AWT-EventQueue-0,6,main])--client acquired [EL Finest]: 2012-02-09 10:36:38.126--UnitOfWork(24925805)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadAllQuery(referenceClass=Relation sql="SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, sk onto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (istransport = ?)") [EL Fine]: 2012-02-09 10:36:38.157--ServerSession(5200460)--Connection(19774731)--Thread(Thread[AWT-EventQueue-0,6,main])--SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (istransport = ?) bind => [1] [EL Finest]: 2012-02-09 10:36:45.511--UnitOfWork(24925805)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadAllQuery(referenceClass=Relation sql="SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, sk onto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (istransport = ?)") [EL Fine]: 2012-02-09 10:36:45.511--ServerSession(5200460)--Connection(19774731)--Thread(Thread[AWT-EventQueue-0,6,main])--SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (istransport = ?) bind => [1] [EL Finer]: 2012-02-09 10:36:45.589--UnitOfWork(24925805)--Thread(Thread[AWT-EventQueue-0,6,main])--initialize identitymaps [EL Finer]: 2012-02-09 10:36:45.589--ClientSession(4852121)--Thread(Thread[AWT-EventQueue-0,6,main])--initialize identitymaps [EL Finer]: 2012-02-09 10:36:45.683--ServerSession(5200460)--Thread(Thread[AWT-EventQueue-0,6,main])--client acquired [EL Finest]: 2012-02-09 10:36:45.683--UnitOfWork(24565739)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Relation sql="SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?)") [EL Fine]: 2012-02-09 10:36:45.683--ServerSession(5200460)--Connection(19774731)--Thread(Thread[AWT-EventQueue-0,6,main])--SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?) bind => [0] [EL Finest]: 2012-02-09 10:36:45.683--UnitOfWork(24565739)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Relation sql="SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?)") [EL Fine]: 2012-02-09 10:36:45.683--ServerSession(5200460)--Connection(19774731)--Thread(Thread[AWT-EventQueue-0,6,main])--SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?) bind => [0] [EL Finest]: 2012-02-09 10:36:45.761--UnitOfWork(24565739)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Relation sql="SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?)") [EL Fine]: 2012-02-09 10:36:45.761--ServerSession(5200460)--Connection(19774731)--Thread(Thread[AWT-EventQueue-0,6,main])--SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?) bind => [0] [EL Finest]: 2012-02-09 10:36:45.777--UnitOfWork(24565739)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Relation sql="SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?)") [EL Fine]: 2012-02-09 10:36:45.777--ServerSession(5200460)--Connection(19774731)--Thread(Thread[AWT-EventQueue-0,6,main])--SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?) bind => [0] [EL Finest]: 2012-02-09 10:36:48.181--UnitOfWork(24565739)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Batchtype sql="SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?)") [EL Fine]: 2012-02-09 10:36:48.181--ServerSession(5200460)--Connection(19774731)--Thread(Thread[AWT-EventQueue-0,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [1] [EL Finest]: 2012-02-09 10:36:48.602--UnitOfWork(28595794)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Batchtype sql="SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?)") [EL Fine]: 2012-02-09 10:36:48.602--ServerSession(5200460)--Connection(19774731)--Thread(Thread[AWT-EventQueue-0,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [1] [EL Finest]: 2012-02-09 10:36:48.696--UnitOfWork(28595794)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Article sql="SELECT articlenr, sale, opwebdate, weight, veer, sellingprice, seqnr, rolkop, webshopprice, keywords, width, artist, opweb, is_landscape, ean, f, c, info, dwhmodified, trashcan, last_supplier_relationnr, printcost_articletypenr, inserted, actueel, minimalstock_plano, articlecode, haslicenses, archive_location, managestock, std_reservation, articlepricegroupnr, tapper, fixed_transfer_price, rolinstellingenok, length, lazylock, opwebshop, is_ending, dwhby, description, minimalstock, articletypenr FROM article WHERE (articlenr = ?)") [EL Fine]: 2012-02-09 10:36:48.727--ServerSession(5200460)--Connection(19774731)--Thread(Thread[AWT-EventQueue-0,6,main])--SELECT articlenr, sale, opwebdate, weight, veer, sellingprice, seqnr, rolkop, webshopprice, keywords, width, artist, opweb, is_landscape, ean, f, c, info, dwhmodified, trashcan, last_supplier_relationnr, printcost_articletypenr, inserted, actueel, minimalstock_plano, articlecode, haslicenses, archive_location, managestock, std_reservation, articlepricegroupnr, tapper, fixed_transfer_price, rolinstellingenok, length, lazylock, opwebshop, is_ending, dwhby, description, minimalstock, articletypenr FROM article WHERE (articlenr = ?) bind => [0] [EL Finest]: 2012-02-09 10:36:50.195--UnitOfWork(28595794)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Relation sql="SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?)") [EL Fine]: 2012-02-09 10:36:50.195--ServerSession(5200460)--Connection(19774731)--Thread(Thread[AWT-EventQueue-0,6,main])--SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?) bind => [0] [EL Finer]: 2012-02-09 10:36:50.242--UnitOfWork(28595794)--Thread(Thread[AWT-EventQueue-0,6,main])--initialize identitymaps [EL Finer]: 2012-02-09 10:36:50.242--ClientSession(4028306)--Thread(Thread[AWT-EventQueue-0,6,main])--initialize identitymaps [EL Finer]: 2012-02-09 10:37:50.684--ServerSession(5200460)--Thread(Thread[AWT-EventQueue-0,6,main])--client acquired [EL Finest]: 2012-02-09 10:37:50.684--UnitOfWork(26454494)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Batchtype sql="SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?)") [EL Fine]: 2012-02-09 10:37:50.684--ServerSession(5200460)--Connection(19774731)--Thread(Thread[AWT-EventQueue-0,6,main])--SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?) bind => [1] [EL Finest]: 2012-02-09 10:37:50.856--UnitOfWork(26454494)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Relation sql="SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?)") [EL Fine]: 2012-02-09 10:37:50.856--ServerSession(5200460)--Connection(19774731)--Thread(Thread[AWT-EventQueue-0,6,main])--SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?) bind => [0] [EL Finest]: 2012-02-09 10:37:50.918--UnitOfWork(26454494)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Relation sql="SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?)") [EL Fine]: 2012-02-09 10:37:50.918--ServerSession(5200460)--Connection(19774731)--Thread(Thread[AWT-EventQueue-0,6,main])--SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?) bind => [0] [EL Finest]: 2012-02-09 10:37:50.965--UnitOfWork(26454494)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Relation sql="SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?)") [EL Fine]: 2012-02-09 10:37:50.965--ServerSession(5200460)--Connection(19774731)--Thread(Thread[AWT-EventQueue-0,6,main])--SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?) bind => [0] [EL Finest]: 2012-02-09 10:37:51.012--UnitOfWork(26454494)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Relation sql="SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?)") [EL Fine]: 2012-02-09 10:37:51.012--ServerSession(5200460)--Connection(19774731)--Thread(Thread[AWT-EventQueue-0,6,main])--SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?) bind => [0] [EL Finest]: 2012-02-09 10:37:51.121--UnitOfWork(26454494)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Batchtype sql="SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?)") [EL Finest]: 2012-02-09 10:37:51.262--UnitOfWork(26454494)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Relation sql="SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?)") [EL Fine]: 2012-02-09 10:37:51.262--ServerSession(5200460)--Connection(19774731)--Thread(Thread[AWT-EventQueue-0,6,main])--SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?) bind => [0] [EL Finest]: 2012-02-09 10:37:51.356--UnitOfWork(26454494)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Batchtype sql="SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?)") [EL Finest]: 2012-02-09 10:37:51.496--UnitOfWork(26454494)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Batchtype sql="SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?)") [EL Finest]: 2012-02-09 10:37:52.543--UnitOfWork(26454494)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Batchtype sql="SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?)") [EL Finest]: 2012-02-09 10:37:54.604--UnitOfWork(26454494)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Relation sql="SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?)") [EL Fine]: 2012-02-09 10:37:54.604--ServerSession(5200460)--Connection(19774731)--Thread(Thread[AWT-EventQueue-0,6,main])--SELECT relationnr, sellorder_state_20_allowed, isreinders, billprefix, delivery_addressnr, webshop_url, shortname, ritnr, relationid3, edifact_desadv_no_zero_amount, edifact_desadv_builder, tobepaidwithin, edifact_invoic_no_zero_amount, grootboeknr, edifact_desadv_builder_test, info, wholesale, dwhmodified, banknaam, use_pricerules, currencynr, incassobanknr, edifact_invoic_builder, incassodagen, btwnummer, name, rabatt, lazylock, relationnr2, allow_backorders, potential_customer, reinders_lieferantenkode, btwnr, report_countrycodenr, uses_pricegroups, external_sellorder_mandatory, incassoreknr, delivery_relationnr, reinders_relationnr, officeid, officegroupid, haspriceagreement, bill_info, retour, relationsegmentnr, payment_agreement, internalnr, agreement_info, belastingnr, allow_buyorder, edifact_invoic_no_credits, skonto, bez, allow_sellorder, external_sellorder_pattern, ritnr2, istransport, skontodagen, externalnr, dwhby, edifact_invoic_builder_test, relationgroupnr FROM relation WHERE (relationnr = ?) bind => [0] [EL Finest]: 2012-02-09 10:37:54.745--UnitOfWork(26454494)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Batchtype sql="SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?)") [EL Finest]: 2012-02-09 10:37:54.964--UnitOfWork(26454494)--Thread(Thread[AWT-EventQueue-0,6,main])--Execute query ReadObjectQuery(referenceClass=Batchtype sql="SELECT batchtypenr, pricerulecode, lazylock, dwhmodified, dwhby, description FROM batchtype WHERE (batchtypenr = ?)")