Microsoft Dynamics AX Error: The Record Already Exists

By Ramesh Singh | July 8, 2016

I was recently working on an issue in Dynamics AX where, after a code move we started receiving the error: ‘Cannot create a record in "TableName." The record already exists.’

One of the most common reasons for this error is, one of the unique index fields has duplicated value. I verified all the unique index requirements were satisfied and there were no duplicated index values.

After investigating, I found out that the RecId generated by the system was getting a value that has been previously used.

The RecId sequence for tables is stored in SystemSequences table and can get out of sync due to one/more of the following reasons:

1.       Data is inserted in the SQL database directly

2.       There has been tableId conflicts during model store move

To fix this error, we need to reset the NextVal field in SystemSequences table. NextVal field should be set to a value greater than the max RecId of the table.

Steps to resolve the error 'record already exists':

1.       Get the tableId for the table.

a.       You can find the tableId from AOT, under Properties for the table.

Cust Tablesyste

b.      You can run a job to display the tableId in infolog.

Get table from table name

2.       Open SQL Server Management Studio and get the max value for RecId for the table, from SystemSequences table.

SELECT MAX(RecId) FROM <TableName>

3.       Update the NextVal field to a value greater than the max RecId of the table.

UPDATE SystemSequences

SET NextVal = <Max RecId> + 1

WHERE TabId = <TableId>

4.       Restart the AOS.


Under the terms of this license, you are authorized to share and redistribute the content across various mediums, subject to adherence to the specified conditions: you must provide proper attribution to Stoneridge as the original creator in a manner that does not imply their endorsement of your use, the material is to be utilized solely for non-commercial purposes, and alterations, modifications, or derivative works based on the original material are strictly prohibited.

Responsibility rests with the licensee to ensure that their use of the material does not violate any other rights.

Start the Conversation

It’s our mission to help clients win. We’d love to talk to you about the right business solutions to help you achieve your goals.

Subscribe To Our Blog

Sign up to get periodic updates on the latest posts.

Thank you for subscribing!