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.
NLU Workbench Model Train fails with error message ERR032: Solution version 1 not found for this solution - Known Error
  • >
  • Knowledge Base
  • >
  • Known Error (Knowledge Base)
  • >
  • NLU Workbench Model Train fails with error message ERR032: Solution version 1 not found for this solution
KB1124054

NLU Workbench Model Train fails with error message ERR032: Solution version 1 not found for this solution


1217 Views Last updated : Nov 16, 2023 public Copy Permalink
KB Summary by Now Assist

Description

For Out of box (OOB) NLU Models like Procurement Service Management Model, if there are any utterance in intent which are using Static (list) Vocabulary source, the Model Train from NLU Workbench fails with the error message "ERR032: Solution version 1 not found for this solution".

Steps to Reproduce

1: In navigator go to NLU Workbench -> Models

2: Select the model to train, i.e.: Procurement Service Management Model - English (Primary)

3: Click "View phase" button in Manage your model content 

4: Click "Train model" button

5: Check Notification message with Error->ERR032: Solution version 1 not found for this solution

Workaround

This problem is under review and targeted to be fixed in a future release. To receive notifications when more information becomes available, subscribe to this Known Error article by clicking the Subscribe button at the top right of this form.

An admin in global scope can execute the workaround script below from System Definition > Scripts - Background:

function checkMlSolution(mlSolutionName){
   var mlGr = new GlideRecord("ml_solution");
   mlGr.addQuery('solution_name', mlSolutionName);
   mlGr.query();

   if(mlGr.next()){
      return true;
   }
   return false;
}

var solutionName;
var vocabGr = new GlideRecord("sys_nlu_vocabulary");
vocabGr.addEncodedQuery('type=static_lookup^solution_nameISNOTEMPTY')
vocabGr.query();

while(vocabGr.next()){
  solutionName = vocabGr.getValue("solution_name");
  if(!checkMlSolution(solutionName)){
     gs.info(" Updating Solution name to empty for vocabulary : " + vocabGr.getValue("name"));
      vocabGr.setValue("solution_name", '');
      vocabGr.update();
  }
}


After that, it is necessary to retrain the NLU Model.


Related Problem: PRB1589957

Potentially Seen In

There is no data to report.

Fixed In

Utah

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.