Configuring Sun Master Indexes (Repository)

ProcedureTo Delete Weighted Calculator Parameters

  1. In the Projects window, expand the Configuration node in the project you want to modify, and then double-click the Best Record file.

    The file opens in the NetBeans XML editor.

  2. Scroll to the WeightedCalculator element and then to the candidate-field element identifying the field you want to delete.

  3. Do either of the following:

    • To delete a custom weighted calculator parameter, scroll to the candidate-field element naming the field to modify.

    • To delete a default weighted calculator parameter, scroll to the default-parameters element.

  4. To delete an existing parameter, scroll to the parameter element you want to delete, and then remove all text between and including the parameter element.

    For example, to delete the SourceSystem parameter below, delete the boldface text.


    <parameter>
       <quality>SourceSystem</quality>
       <preference>CDI</preference>
       <utility>80.0</utility>
    </parameter>
    <parameter>
       <quality>MostRecentModified</quality>
       <utility>75.0</utility>
    </parameter>

    Note –

    At least one parameter must be defined for the default-parameter element; you cannot delete all parameters from this section. You cannot delete all parameters from a candidate field, but you can delete the entire candidate field (see below for more information).


  5. To delete a field from the candidate field list, delete all text between and including the candidate-field tags for the field you want to delete.

    Using the following example, to delete the Person.DOB candidate field from the custom calculator, delete all the text below.


    <candidate-field name="Person.DOB">
       <parameter>
          <quality>SourceSystem</quality>
          <preference>CDI</preference>
          <utility>80.0</utility>
       </parameter>
       <parameter>
          <quality>MostRecentModified</quality>
          <utility>75.0</utility>
       </parameter>
    </candidate-field>
  6. Save and close the file.