This is the message i get when trying to insert a new activity to Manage Committees and when converting an order to an invoice. I am not sure if this is the proper place to post it or if is is related to the SQL server or something else.
WinIO/63 2627
23000:[Microsoft][ODBC SQL Server dirver] [SQL Server]Violation of PRIMARY KEY contraint ‘pkActivitySEQN’.
Cannot insert duplicate key in object’dbo.Activity’. 01000:[Microsoft][ODBC SQUL Server Driver] [SQUL Server]The statement has been terminated.
it looks like a Counter table mismatch
Try running this SQL against your database; the two values should match.
SELECT MAX([SEQN]) FROM [Activity]
SELECT [LAST_VALUE] FROM [Counter] WHERE [COUNTER_NAME] = 'Activity'