Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

Have a look at framework/appserver/README file. You might be also interested by Run OFBiz under outside Application Servers (WASCE 2.0.0.1, Geronimo 2.0.3, Tomcat 5.5 and 6, JBoss 4.2.2)

Anchor
createAcctgTransAndEntries
createAcctgTransAndEntries

...

  1. If you are not interested in posting accounting transactions to the GL then you can disable (i.e. comment out) the first eca rule in accounting/servicedef/secas_ledger.xml
    Code Block
    <eca service="createAcctgTransAndEntries" event="commit">
        <condition field-name="acctgTransId" operator="is-not-empty"/>
        <action service="postAcctgTrans" mode="sync"/>
    </eca>
  2. Configure an Error Journal to post there the accounting transactions that are incomplete (you will find a lot of posts about this if you search in the archives)

Anchor
obsolete
obsolete

Is it possible to delete products, categories or catalogs that are no longer needed?

This question has been already asked many times. You should find more information in Nabble
The main idea is that in OFBiz we don't delete but use end dates to mark obsolescence.

Four main reasons :

  • Data are still there in case of audit
  • Disk space should not a be problem
  • DB indexes are managing quite well huge data volumes.
  • Easier with all entities associations

If you really need to do it, think about these 4 points before...