Re: Installing Extender on GP 2010, EXT40101 Invalid column name WINNAME
Hi Meg,
I was able to fix the problem... somehow the structure of the tables must have changed over the time and there is a SQL script that has been released by eOne (the builder of Extender) to fix those errors. The script basically recreates all the SP's attached to some of the EXT tables and renames also some columns. Here's an extract of the portion about renaming the columns :
/*Rename Columns in EXT40800 and EXT40801 */
if exists (SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'EXT40800' AND COLUMN_NAME = 'PT_Palette_ID')
exec sp_rename 'EXT40800.PT_Palette_ID', 'Extender_Menu_ID', 'COLUMN'
GO
if exists (SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'EXT40800' AND COLUMN_NAME = 'PALETNME')
exec sp_rename 'EXT40800.PALETNME', 'Extender_Menu_Name', 'COLUMN'
GO
if exists (SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'EXT40801' AND COLUMN_NAME = 'PT_Palette_ID')
exec sp_rename 'EXT40801.PT_Palette_ID', 'Extender_Menu_ID', 'COLUMN'
GO
/*End Rename Columns in EXT40800 and EXT40801 */
Hope this helps other stuck with the GP2010 Extender update.