RE: GP 2016 - Extended Price Error
I am guessing there is a GP addin or modification by RTW involved here, or someone has added a database hack?
Have you any 3rd party products installed, or could have had something installed in the past?
Curious to know what results you get it if you run the following SQL against the company database which should look for any objects named RTW.
|
select object_name(object_id) as object_name,definition
from sys.sql_modules
where definition like '%RTW%'
|
Does it find any RTW_ named objects?
You could also look for the call for this object and see where is it by searching the DB- it might not be there, it might be in code.
SELECT DISTINCT
o.name AS Object_Name,o.type_desc
FROM sys.sql_modules m
INNER JOIN sys.objects o ON m.object_id=o.object_id
WHERE m.definition Like '%RTW[_]PRICELIST[_]DELETE%'
ORDER BY 2,1
Tim