65.9K
CodeProject is changing. Read more.
Home

Adding Properties to MOSS Advanced Search

starIconstarIconstarIcon
emptyStarIcon
starIcon
emptyStarIcon

3.15/5 (3 votes)

Jan 18, 2007

1 min read

viewsIcon

59023

This article explains the steps to create and configure a Managed Property in MOSS 2007 Advanced Search

Introduction

There are changes in configuring the Properties to appear in the Advanced Search in MOSS 2007. Here I explain the steps to create Managed Properties and configure it in MOSS 2007 Advanced Search.

Adding Properties to MOSS Advanced Search

  1. Go to the central administration -> Shared Services

    Sample screenshot

  2. Under the Search Menu, click on Search Settings.
  3. In the Configure Search Settings page, click on Metadata Property Mappings.

    Sample screenshot

  4. In the Metadata Property Mappings page, click on New Managed Property

    Sample screenshot

  5. Enter the Property Name and add the crawled properties that you want to add by clicking on the Add mappings button.

    Sample screenshot

    Sample screenshot

  6. Click OK. Once you have created the new custom managed property, go to the Advanced Search page.
    • Click on Site Settings and then on "Edit Page"
    • Click on Edit Menu of the Webpart and then Select "Modify Shared Web part"

In the Advanced Search Box Pane, click on the Properties Menu and then select the content in the Properties Text Box. In order that your Managed Properties appears in the Properties lists, you need to make changes in the XML file content.

Sample screenshot

The XML File in Properties has the following structure:

  • Find the string:

    <PropertyDef Name="ModifiedBy" DataType="text" 
                DisplayName="Last Modified By"/> 

  • Add the following String below it:

    <PropertyDef Name="MyProperty" DataType="text" DisplayName="MyProperty"/>

    MyProperty denotes the managed property that was created in Search Settings in the Shared Services.

  • Find the ResultType node:

    <ResultType DisplayName="All Results" Name="default">

  • Add the following string below this:

    <PropertyRef Name="MyProperty" />

  • Now you can click on Apply and OK to close the pane.
  • The property "MyProperty" will appear in the Property list box when All Results is selected.