Skip to page contentSkip to chat
ServiceNow support
    • Community
      Ask questions, give advice, and connect with fellow ServiceNow professionals.
      Developer
      Build, test, and deploy applications
      Documentation
      Find detailed information about ServiceNow products, apps, features, and releases.
      Impact
      Accelerate ROI and amplify your expertise.
      Learning
      Build skills with instructor-led and online training.
      Partner
      Grow your business with promotions, news, and marketing tools
      ServiceNow
      Learn about ServiceNow products & solutions.
      Store
      Download certified apps and integrations that complement ServiceNow.
      Support
      Manage your instances, access self-help, and get technical support.
SAMP Reconciliation: Certain software installs are not being considered for reconciliation - Support and Troubleshooting
  • >
  • Knowledge Base
  • >
  • Support and Troubleshooting (Knowledge Base)
  • >
  • SAMP Reconciliation: Certain software installs are not being considered for reconciliation
KB0829074

SAMP Reconciliation: Certain software installs are not being considered for reconciliation


859 Views Last updated : Apr 8, 2024 public Copy Permalink
KB Summary by Now Assist

Issue

When running reconciliation, certain software install records do not seem to be counted against reconciliation, even though there are no filters that would filter out these installations

Cause

The "Normalized Product" (norm_product) and "Normalized Publisher" (norm_publisher) fields on the software installs are empty although the norm_publisher and norm_product on discovery model associated with those installs are set correctly.

Resolution

The script below can be used to fix the install records: 
=================================================================
var rec = new GlideRecord("cmdb_sam_sw_install");
rec.addQuery("software_model", "<sys_id of the model record associated with the installs>");
rec.setValue("norm_product", "<sys_id of the normalized product>");
rec.setValue("norm_publisher", "<sys_id of the normalized publisher>");
rec.setValue("normalized_version", "14.0.7015.1000"); //replace example with string value for normalized version
rec.setValue("normalized_publisher", "Microsoft"); //replace example with string value for normalized publisher
rec.setValue("normalized_display_name", "Microsoft Visio Standard 2010"); //replace example with string value for normalized display name
rec.setValue("is_normalized", true);
rec.updateMultiple();
=================================================================

*note* Please run this script first on a sub-production instance and if there are any questions, reach out to Technical Support for further assistance


The world works with ServiceNow.

Sign in for more! There's more content available only to authenticated users Sign in for more!
Did this KB article help you?
Did this KB article help you?

How would you rate your Now Support digital experience?

*

Very unsatisfied

Unsatisfied

Neutral

Satisfied

Very satisfied

Very unsatisfied

Unsatisfied

Neutral

Satisfied

Very satisfied

What can we improve? Please select all that apply.

What are we doing well? Please select all that apply.

Tell us more

*

Do you expect a response from this feedback?

  • Terms and conditions
  • Privacy statement
  • GDPR
  • Cookie policy
  • © 2025 ServiceNow. All rights reserved.