Creating new account resutls in Invalid InsertIssue When creating a new customer_account record, there is an "Invalid Insert" error and the record is not saved.ReleaseAll ReleasesCauseThe customer_account table has three fields that require unique values, one is the account code. This field is creating with a default value that is determined by the last used value. The 'last used' value is stored in the com.snc.cs_base.last.generated.code.tree.path system property. If the property is reset to the original value, it will attempt to create new accounts with an account code that is already in use.ResolutionIdentify the last used value for the account code field on the customer_account table and update the com.snc.cs_base.last.generated.code.tree.path system property with that value.Related LinksUpdate the com.snc.cs_base.last.generated.code.tree.path sys_property with the correct valueYou can get the value by sorting the record list in descending order based on account_code and the first record will be the one with higher lexical orderSo, To get the latest code that is generated :Go to accountsAdd Account Code field in the list viewSort the list in descending order based on "Account Code" FieldThe account code of the first record is the last generated code* More Details :* How new account code gets generated - account_code is generated based on the pattern "!#$&()*+,-.0123456789:;<?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]`}|{~" and sys_property com.snc.cs_base.last.generated.code.tree.pathFor e.g.: if value in sys_property is !!!#, the next value for account code will be !!!$.