[CMDB\CI Identifier] Error message "Rule entry under {1} identifier using non-existent {2} is ignored during identification!" when accessing any CI IdentifierDescriptionWhen trying to access any table the error message is seen "Error message :"Rule entry under {1} identifier using non-existent {2} is ignored during identification!". i.e. when trying to access CI Identifiers & CI Identifier entry (cmdb_identifier_entry) the same error message displays. Steps to Reproduce 1. Login to the affected instance 2. Navigate >> Configuration >> Identification/Reconciliation >> CI IdentifiersError message thrown: "Rule entry under {1} identifier using non-existent {2} is ignored during identification!" 3. Also, Navigate >> cmdb_identifier_entry_list.do Error message thrown: "Rule entry under {1} identifier using non-existent {2} is ignored during identification!"WorkaroundThis problem is currently under review. You can contact ServiceNow Technical Support or subscribe to this Known Error article by clicking the Subscribe button at the top right of this form to be notified when more information will become available. The error message is from the "IdentificationRuleValidator" Script Include in the line:57, where it just needs to be an array. var msg = gs.getMessage("{0} under {1} identifier using non-existent {2} is ignored during identification!", entryDesc, this.problematicIdentifier[i], tableOrField); To resolve this issue change the below line, from: var msg = gs.getMessage("{0} under {1} identifier using non-existent {2} is ignored during identification!", entryDesc, this.problematicIdentifier[i], tableOrField); to: var msg = gs.getMessage("{0} under {1} identifier using non-existent {2} is ignored during identification!", [entryDesc, this.problematicIdentifier[i], tableOrField]);Related Problem: PRB1449059