1. Constituencies:
If you have constituencies which never expire then check the end date is either NULL or 01/01/2999. There is a bug in V12 or maybe earlier when using constituencies as part of the criteria in List Manager and Extractions. This has been fixed in V14. We went from 14,000 accounts with a given constituency to 3,000 because of the end date being 01/01/1900. Once the end date was re-set all was well. The SQL for this is easy enough.
2. The Performance Base Price and Availability Report
This report has been changed from Infomaker to SSRS. The result users will not initially see the report. You need to head into security and provide access to the report.
3. TR_QUERY_ELEMENT
Basically the issue is that with v14, the data_where column can't have keyword_no = at the beginning of the statement. Items in the where need to be swaped around. This is a sample of what had to be done:
select * from tr_query_elementwhere data_where like '%keyword%'
update tr_query_elementset data_where = 'key_value = ''Do Not Trade'' and keyword_no = 408'where id = 407
I'm sure more surprises await.
Peter
I'm so grateful for this, Peter! Thank you! We're gearing up for an upgrade in the fall and I'm so nervous, remembering how horrible the v12 upgrade was, with all kinds of little hidden bugs and issues just like this. Nice to have a list of things to look out for!