In the Projects window, expand the Configuration node in the project you want to modify, and then double-click the Match Field file.
The file opens in the NetBeans XML editor.
Scroll to the phoneticize-fields element in the PhoneticEncodersConfig element.
Do either of the following:
To delete a field currently specified for phonetic conversion, delete all text between and including the phoneticize-field element that defines the field.
Using the example below, to delete the first name phonetic field, delete the boldface text.
<phoneticize-fields>
<phoneticize-field>
<unphoneticized-source-field-name>Person.LastName
</unphoneticized-source-field-name>
<phoneticized-target-field-name>Person.LastNamePhoneticCode
</phoneticized-target-field-name>
<encoding-type>NYSIIS</encoding-type>
</phoneticize-field>
<phoneticize-field>
<unphoneticized-source-field-name>Person.FirstName
</unphoneticized-source-field-name>
<phoneticized-target-field-name>Person.FirstNamePhoneticCode
</phoneticized-target-field-name>
<encoding-type>Soundex</encoding-type>
</phoneticize-field>
</phoneticize-fields>
|
To delete all fields currently specified for phonetic conversion, delete all text between, but not including, the phoneticize-fields element.
Save and close the file.