I’m running a SmartConnect map to create employees using the Create Employee destination. Most of the records are successful but a few give the error:
Error Number = 12005 Stored Procedure= Error Description = Error Codes were not found in table DYNAMICS..taErrorCode. Please insure that the table taErrorCode is up to update. 12005
Since it doesn’t give a proper message, I’m not sure what to fix.
The proper error message should be:
This GP user ID is already assigned to an employee. You must specify a different GP user ID
The error message seems to be missing from the taErrorCodes table. Use the following SQL in SSMS to create the record so that eConnect returns the proper error message.
insert taErrorCode values(12005,’taCreateEmployee’,’This GP user ID is already assigned to an employee. You must specify a different GP user ID’,’EMPLOYID USERID’,’EMPLOYID USERID’)