Configuring Sun Master Indexes (Repository)

Configuring the EDM Match Review Page (Repository)

The Match Review page allows you to search for potential duplicate or assumed match records to compare, view a results list, and then view a comparison of the records you select. You can configure the name of the tabbed heading for the page, the type of object returned, and the appearance of the search and results pages. Do not modify the URL of the entrance to the Match Review page. Following is a sample of the matching-review element.


<matching-review>
   <root-object>Company</root-object>
   <tab-name>Matching Review</tab-name>
   <tab-entrance>/stcedm/EnterPDSearchAction.do</tab-entrance>
   <pd-search-page>
      <field-per-row>2</field-per-row>
   </pd-search-page>
   <search-result-list-page>
      <item-per-page>10</item-per-page>
      <max-result-size>250</max-result-size>
   </search-result-list-page>
</matching-review>

ProcedureTo Configure the Match Review Page

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

    The file opens in the NetBeans XML editor.

  2. Scroll to the page-definition element in the gui-definition element, and then to the matching-review element.

  3. To specify a different object to be returned from the search, change the value of the root-object element.

    For example:


    <root-object>Customer</root-object>

    Note –

    This must be the name of the parent object.


  4. To specify a different name for the Matching Review tab, modify the value of the tab-name element.

    For example:


       <tab-name>Potential Duplicates</tab-name>
  5. To specify the number of fields to display in each row on the Matching Review search page, change the value of the field-per-row element in the pd-search-page element.

    For example:


    <pd-search-page>
       <field-per-row>3</field-per-row>
    </pd-search-page>
  6. To specify the number of records to display on the Matching Review search results page, change the value of the item-per-page element in the search-result-list-page element.

    For example:


    <item-per-page>15</item-per-page>
  7. To specify a maximum number of results for a Matching Review search, change the value of the max-result-size element in the search-result-list-page element.

    For example:


    <max-result-size>100</max-result-size>
  8. Save and close the file.