Sebastian Leupold wrote
I assume, some of the upgrade procedures didn't run, you may rerun the sql scripts inside /providers/dataproviders/sqldataprovider from inside Host :: SQL (check run as script).
one by one, load associated scripts for the version above your previous one, make sure to run them in proper (ascending number) and ignore any errors displayed
Hi Sebastion,
I reran the SQL scripts but those didn't do any difference ...
I finaly managed to get it fixed by writing some custom code which basically calls the part(s) of the upgrade code which for some reason never got executed.
I simply had to execute
'Force Upgrade of Menu's
Upgrade.Upgrade.UpgradeApplication(New System.Version(5, 0, 0), True)
Upgrade.Upgrade.UpgradeApplication(New System.Version(5, 0, 1), True)
Upgrade.Upgrade.UpgradeApplication(New System.Version(5, 1, 0), True)
And that did the trick ...
Thanks for helping out on this one,
Steven