Description field on the "discovery_printer_supplies" table has hex values instead of a stringIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Symptoms When you run disocvery on printers, the description field on "discovery_printer_supplies" records have hex values instead of a string. Release Applicable to all releases Cause The printer supplies information is queried at the OID "1.3.6.1.2.1.43.11" from the SNMP - Printing probe. If we are getting back a hex value from this probe, we are directly parsing this value from the payload and updating the description field on discovery_printer_supplies records. So you might see hex values in place of a string. Resolution Create an update/insert business rule on discovery_printer_supplies table. Make the business rule advanced and paste the following code: -------------------------------------------------------------------------------- (function executeRule(current, previous /*null when async*/) { var input = current.description var nospace = input.replace(/\s/g, ''); //remove spaces from the hex value we have regexp = /^[0-9a-fA-F]+$/; var res = regexp.test(nospace); //validate if the value we have is hex if (res == true){ //convert to string only if the value we have is hex var string = ''; for (var i = 0; i < nospace.length; i += 2) { string += String.fromCharCode(parseInt(nospace.substr(i, 2), 16)); } current.description = string; } })(current, previous); -------------------------------------------------------------------------------- Save the business rule and run discovery on the affected printers.