In the Projects window, expand the Configuration node in the project you want to modify, and then double-click the Candidate Select file.
The file opens in the NetBeans XML editor.
Scroll to the query-builder element that contains the blocking query to modify.
In that query-builder element, delete all text between and including the block-definition element defining the data block to remove.
For example, in the sample below, to delete the SSN block you would delete the boldface text.
<config>
<block-definition number="ID000007">
<block-rule>
<equals>
<field>Enterprise.SystemSBR.Person.SSN</field>
<source>Person.SSN</source>
</equals>
</block-rule>
</block-definition>
<block-definition number="ID000008">
<block-rule>
<equals>
<field>Enterprise.SystemSBR.Person.DOB</field>
<source>Person.DOB</source>
</equals>
</block-rule>
</block-definition>
|
Each blocking query must contain one config element, and the config element must contain at least one block definition.
Save and close the file.