Rule entry xx identifier using non-existent table is ignored during identification - Identify ScriptIssue <!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } We are getting below error when saving any attribute value on CI recordRule entry xx identifier using non-existent table is ignored during identification Release<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } All Release Resolution<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } When CI identifier list or form is opened , below error message is displayed Rule entry under <tablename> identifier using non-existent field is ignored during identificationRule entry under <tablename> identifier using non-existent table is ignored during identification What does it mean ? There is a field or table that was deleted or missing , But the rule is still referencing these field or table. Details : This message is triggered by the Business Rule “Rule validation on Identifier form” and “Rule validation on Identifier list” Which validates all the CI identifiers to throw this message How to Identify the issue : Open Background scriptRun the below script to identify the field and table that are incorrect and needs to be correctedCheck the result for table and sys_id to fix the issue. Use Show XML or List view to find the invalid entry as form will not show the value. Code: var problematicRule = j2js(SNC.CMDBUtil.getInvalidEntryIDs()); var problematicIdentifier = j2js(SNC.CMDBUtil.getInvalidEntryIdentifiers()); var problematicDesc = j2js(SNC.CMDBUtil.getInvalidEntryDescs()); for(var i=0; i< problematicRule.length ; i ++){ if(problematicDesc[i] == 'InvalidTable') gs.info('Table:cmdb_related_entry , sys_id: ' + problematicRule[i] + ' failed. Identifier = ' +problematicIdentifier[i] + ' Error - ' + problematicDesc[i] ); else gs.info('Table:cmdb_identifier_entry , sys_id: ' + problematicRule[i] + ' failed. Identifier = ' +problematicIdentifier[i] + ' Error - ' + problematicDesc[i] ); } Result: *** Script: Table:cmdb_identifier_entry , sys_id: 292174b34f25311007d52524b2ce0b07 failed. Identifier = cmdb_ci_hardware Error - InvalidField *** Script: Table:cmdb_related_entry , sys_id: 6b86eea11b9f2690e2705315604bcb15 failed. Identifier = cmdb_ci_hardware Error - InvalidTable