This point increased (v25 to v26) was primarily caused by two projects:
- 11868943 - Add Ability To Disable Sales Order Upload To The Epicor Connector. This included a schema change to one of our BDConnector tables.
- 11881255 - Add Sales Order Line Discount Support To Sage 100. There was some fairly significant alterations to the underlying code on Sage 100 orders.
- 11884260 - Field Names Must Be Unique. If your database has multiple Field Definitions with the same name, you will get an error when launching the software alerting you to the offending field name. You will then need to manually delete the offending duplicate from BDFieldDefinitions. You may run the below query against your database to see if you have any problems. If this does not return any records, then you are good to go:
select
FieldGroup,Name,count(*)
from bdfielddefinitions
group by FieldGroup,Name
having count(*)>1