Catalog tasks created with same numberIssue Two catalog tasks got created with the same number, even though the workflow creates only one task.CauseThe display business rule is defined on the "sc_task" table using the "current.update()" statement.ResolutionCheck to see if there are any 'before insert' or 'display' business rules defined on "sc_task" table that have a "current. update()" statement inside its script. This can create records with duplicate numbers. So, avoid creating such business rules with the current.update() statement.