Duplicate Change Requests on the instanceIssue Duplicate change requests are getting created on the instance.ReleaseAll releasesCauseWhen the issue is reproduced and if you notice the duplicate change request records are getting created around the created time, then check Node Logs for details.Node Logs will throw an error similar to the below:Unique Key violation detected by database (Duplicate entry '1e20d4271b23f3c055f486e8cd4bcba1' for key 'PRIMARY')java.sql.SQLIntegrityConstraintViolationException: Duplicate entry '1e20d4271b23f3c055f486e8cd4bcba1' for key 'PRIMARY'This indicates that a custom business rule may be running and causing this issue. ResolutionFound out the cause is a custom "Before" Insert business rule containing "current.update()" is throwing Unique Key Violation error.Avoid using current.update() in a business rule script. Related LinksHow Business Rules Work product documentation