SlideShare ist ein Scribd-Unternehmen logo
1 von 19
SlideShare.netSeptember 2009SharePoint Search: Mapping Columns in SharePoint Lists To allow searching in specific document typesGeorge Catrombon Contents TOC  
1-3
    SUMMARY PAGEREF _Toc241928898  3SETUP SHAREPOINT TO PREPARE FOR THE SEARCH PROBLEM PAGEREF _Toc241928899  3CRAWL THE NEW CONTENT PAGEREF _Toc241928902  9DEMONSTRATION OF THE SEARCH PROBLEM PAGEREF _Toc241928903  12STATEMENT OF THE PROBLEM PAGEREF _Toc241928904  14THE FIX – ADD MAPPING PAGEREF _Toc241928905  14PERFORM A FULL CRAWL AGAIN TO CAPTURE OUR MAPPING PAGEREF _Toc241928906  18PERFORM THE SEARCH AGAIN PAGEREF _Toc241928907  18CONCLUSION PAGEREF _Toc241928909  19 SUMMARY This tutorial explains how to overcome a specific problem with searching in SharePoint. The problem presents itself when a search is performed looking for: A key word in a document ( Example: search for the word “wireless”)  Additionally specifying the type of document to search in when the types are defined in a list with a custom column.  The solution to this search problem is to create a mapping in SharePoint on the custom column in the list through SharePoint Shared Services search configuration.  This tutorial will explain how to perform this mapping. SETUP SHAREPOINT TO PREPARE FOR THE SEARCH PROBLEM To recreate the problem, we need to create a custom list in SharePoint.   We will name this library Document Types List as shown in Figure 1.  Then, we add two line items to the list as shown in Figure 1 below by clicking New > New Item.  Note that we have specified two document types: Profile and Policy.  Figure 1 Next, we need to create a document library, where the document types that are allowed to populate that library must be Profile or Procedure as denoted on our list in Figure 1.  So, we create a new library named Test Search Library as per SharePoint standard practice.  Refer to Figure 2 below. Figure 2 – Create a library as per standard practice Now we need to create a column in this library, but the value that is allowed to appear in that column must be limited to the Document Types that are on the Document Types List, specifically, those denoted in the Document Types column (E.g. Profile or Procedure). No other types are allowed. To create this column, we click on Settings > Create Column as shown in Figure 3. Figure 3 The column we specify will be created by clicking the radio button Lookup (information already on the site).  Then, in the Get information from list box, we will choose our list Document Types List.  Then, from the In this column drop down, select Document Type. We name the column Document Type. Refer to Figure 4 for all these settings. Figure 4 After this, our document library will appear as in Figure 5. Note our new column named Document Type which is a lookup column.  Q. What do we mean by a lookup column? A. When we add a document to the library, we will have to specify the type of document by means of a drop down list box bound to the column.  The drop down list box will contain the values Profile and Procedure from the Document Types List.  Recall that our library can only contain document types that are on that list. Our drop down list contains the only types we can pick from. We will see this action in a moment. Figure 5 At this point, we create two files using Notepad.  Each file will contain a single word “wireless”.  We will save those two documents to a directory of our choice. The names of the documents are Profile.txt and Procedure.txt as shown in Figure 6.  Figure 6 Our NotePad documents (which both contain the word “wireless”) are shown in Figure 7 & 8. Figure 7 Figure 8 We now add those two documents to our Library by clicking Upload > Upload Document.  Browse to our notepad file Policy.txt and select it.  We will then get an additional web page where we need to specify the type of document it is as shown in Figure 9. Figure 9 – Note the dropdown is bound to the Document Type column in the Document Types List list.  The result will be a new document added as shown in Figure 10. Figure 10 We repeat the procedure to upload Procedure.txt, but we specify that the document type is Procedure rather than Profile.  Refer to Figure 11. Figure 11 So, at this point, we have our custom list with custom column, and we have a custom library with two documents in it, one of each type from the list.  Now, we need to have SharePoint crawl the new content.   CRAWL THE NEW CONTENT To force a crawl of the content we need to use Shared Services Administration as shown in Figure 12. Figure 12 We click on SharedServices_Content (Default) (or whatever you named yours) link from Figure 12 and the result will be as in Figure 13. Figure 13 We then click on Search Settings as shown in Figure 13.  This results in another screen as shown in Figure 14.  Figure 14 Click on Content sources and crawl Schedule as shown in Figure 14.  The resulting page will be as in Figure 15.  It is from this page that we force the crawls. Figure 15 Right click on each line item as shown in Figure 16, and select Start Full Crawl.  See Figure 16.  Wait for the crawls to complete by refreshing the page.  When crawling is in progress, the result should look like Figure 17. Figure 16 Figure 17 – crawling in progress Wait for the crawls to complete. THE SEARCH PROBLEM Now, we want to perform an advanced search.  We do this from the Search tab on the site.  Click on the Search tab and the search page will appear as in Figure 18. Figure 18 Now, we need a very specific search to demonstrate the problem.  We want to search for the word wireless, but only in the documents of type Profile.  We do not want to search in documents of type Procedure.  To do this, we need an advanced search.  Click on Advanced Search and the result is shown in Figure 19.  Enter the search as shown in Figure 19.   Note that we are specifying to only search in documents of type Profile.  Figure 19 – only search documents of type Profile  When we click the search button, nothing is returned as shown in Figure 20. Figure 20 STATEMENT OF THE PROBLEM We can now define what the problem is. The SharePoint search engine is very smart to index the copy of each of our two documents.  In fact, if you run a search just for the word “wireless”, our two documents will be found.   However, if you have a custom column as we do specifying the document types, then SharePoint is not smart enough to index that custom column.  Therefore, if you try to search with keyword wireless and specify a type of document to search in as we did in Figure 19, the search will fail.   You can also try to search the Procedure type and the result will fail as well. THE FIX – ADD MAPPING To fix this problem, we need to add mapping to the search configuration.  To add the mapping, we need to go to Shared Services as we did in Figure 13 and click on Search Settings.  In the resulting page as shown in Figure 21, click on Metadata property mappings.  Figure 21 The result is Figure 22. Figure 22 We click on New Managed Property and the result is as in Figure 23. Figure 23 We then proceed to configure a mapping.  Add the two fields as shown in Figure 24.  Figure 24 Then, click on the button Add Mapping.  This will result in a dialog box as shown in Figure 25.  In the Crawled Property Name text box, type ows_ and then click Find.  You will then be presented with a list of columns in the site, prefaced with the string ows_.  If we scroll down the list, we should see our custom column. See Figure 25 Figure 25 – Our custom column is on the list Then, click on Allow this property to be used in all scopes. Refer to Figure 26.  Figure 26 This completes the mapping. PERFORM A FULL CRAWL AGAIN TO CAPTURE OUR MAPPING Perform a full crawl as you did in Figure 16. Wait until it finishes.  PERFORM THE SEARCH AGAIN Now if you perform the search as we did in Figure 19, but use the mapping term mpDocumentType.  Now we see the search is successful as shown in Figure 27. NOTE: You may have to refresh your browser since the old page may be cached.  Figure 27 CONCLUSION We have demonstrated the search problem with SharePoint and have shown the solution.  Hopefully, readers will be able to apply this knowledge in the field. END DOCUMENT
Tutorial Search With Custom Column Slide Share
Tutorial Search With Custom Column Slide Share
Tutorial Search With Custom Column Slide Share
Tutorial Search With Custom Column Slide Share
Tutorial Search With Custom Column Slide Share
Tutorial Search With Custom Column Slide Share
Tutorial Search With Custom Column Slide Share
Tutorial Search With Custom Column Slide Share
Tutorial Search With Custom Column Slide Share
Tutorial Search With Custom Column Slide Share
Tutorial Search With Custom Column Slide Share
Tutorial Search With Custom Column Slide Share
Tutorial Search With Custom Column Slide Share
Tutorial Search With Custom Column Slide Share
Tutorial Search With Custom Column Slide Share
Tutorial Search With Custom Column Slide Share
Tutorial Search With Custom Column Slide Share
Tutorial Search With Custom Column Slide Share

Weitere ähnliche Inhalte

Was ist angesagt?

Lesson Four Setting Up Tables And Fields
Lesson Four   Setting Up Tables And FieldsLesson Four   Setting Up Tables And Fields
Lesson Four Setting Up Tables And Fields
guevarra_2000
 
Adding A New Field
Adding A New FieldAdding A New Field
Adding A New Field
EMAINT
 
Tutorial for using SQL in Microsoft Access
Tutorial for using SQL in Microsoft AccessTutorial for using SQL in Microsoft Access
Tutorial for using SQL in Microsoft Access
mcclellm
 

Was ist angesagt? (10)

Data analysis accesssql_modeloff
Data analysis accesssql_modeloffData analysis accesssql_modeloff
Data analysis accesssql_modeloff
 
Lesson Four Setting Up Tables And Fields
Lesson Four   Setting Up Tables And FieldsLesson Four   Setting Up Tables And Fields
Lesson Four Setting Up Tables And Fields
 
Binding to multiple datasources on a single xPage
Binding to multiple datasources on a single xPageBinding to multiple datasources on a single xPage
Binding to multiple datasources on a single xPage
 
XPages - The Ties That Bind
XPages - The Ties That BindXPages - The Ties That Bind
XPages - The Ties That Bind
 
Adding A New Field
Adding A New FieldAdding A New Field
Adding A New Field
 
Mail merge
Mail mergeMail merge
Mail merge
 
Microsoft Access 2010 - a jargon free guide
Microsoft Access 2010 - a jargon free guideMicrosoft Access 2010 - a jargon free guide
Microsoft Access 2010 - a jargon free guide
 
SugarCRM Lotus Notes Plug-In
SugarCRM Lotus Notes Plug-InSugarCRM Lotus Notes Plug-In
SugarCRM Lotus Notes Plug-In
 
Brevity NDIS Software - Quick Start Guide
Brevity NDIS Software - Quick Start GuideBrevity NDIS Software - Quick Start Guide
Brevity NDIS Software - Quick Start Guide
 
Tutorial for using SQL in Microsoft Access
Tutorial for using SQL in Microsoft AccessTutorial for using SQL in Microsoft Access
Tutorial for using SQL in Microsoft Access
 

Andere mochten auch

Krishna Printernational Corporate Presentation
Krishna Printernational Corporate PresentationKrishna Printernational Corporate Presentation
Krishna Printernational Corporate Presentation
Krishna Printernational
 
Slovakia and eurcrisis _ba_23052012
Slovakia and eurcrisis _ba_23052012Slovakia and eurcrisis _ba_23052012
Slovakia and eurcrisis _ba_23052012
Italoblog
 
Why choose jon_barrett_for_sales_and_marketing_110113
Why choose jon_barrett_for_sales_and_marketing_110113Why choose jon_barrett_for_sales_and_marketing_110113
Why choose jon_barrett_for_sales_and_marketing_110113
Jon Barrett
 
Cecyt 2008
Cecyt 2008Cecyt 2008
Cecyt 2008
moniki
 
Home Projects (1)
Home Projects (1)Home Projects (1)
Home Projects (1)
Paul Melton
 
Paty y Paloma
Paty y PalomaPaty y Paloma
Paty y Paloma
jesselem
 

Andere mochten auch (20)

everdo for ad
everdo for adeverdo for ad
everdo for ad
 
Сергей Котырев – Мои новые ошибки и что я узнал про менеджмент за прошедший год
Сергей Котырев – Мои новые ошибки и что я узнал про менеджмент за прошедший годСергей Котырев – Мои новые ошибки и что я узнал про менеджмент за прошедший год
Сергей Котырев – Мои новые ошибки и что я узнал про менеджмент за прошедший год
 
Руслан Фазлыев – Как управлять собой, чтобы поручили управлять другими
Руслан Фазлыев – Как управлять собой, чтобы поручили управлять другимиРуслан Фазлыев – Как управлять собой, чтобы поручили управлять другими
Руслан Фазлыев – Как управлять собой, чтобы поручили управлять другими
 
Krishna Printernational Corporate Presentation
Krishna Printernational Corporate PresentationKrishna Printernational Corporate Presentation
Krishna Printernational Corporate Presentation
 
The Simple Life
The Simple LifeThe Simple Life
The Simple Life
 
Report Mi.Mo. - I cittadini Migliorano la Mobilità - 2011
Report Mi.Mo. - I cittadini Migliorano la Mobilità - 2011Report Mi.Mo. - I cittadini Migliorano la Mobilità - 2011
Report Mi.Mo. - I cittadini Migliorano la Mobilità - 2011
 
Slovakia and eurcrisis _ba_23052012
Slovakia and eurcrisis _ba_23052012Slovakia and eurcrisis _ba_23052012
Slovakia and eurcrisis _ba_23052012
 
10 Ways to Find Common Ground with Your Social Media Audience
10 Ways to Find Common Ground with Your Social Media Audience10 Ways to Find Common Ground with Your Social Media Audience
10 Ways to Find Common Ground with Your Social Media Audience
 
Trompito 1
Trompito 1Trompito 1
Trompito 1
 
Rome
RomeRome
Rome
 
Why choose jon_barrett_for_sales_and_marketing_110113
Why choose jon_barrett_for_sales_and_marketing_110113Why choose jon_barrett_for_sales_and_marketing_110113
Why choose jon_barrett_for_sales_and_marketing_110113
 
Cecyt 2008
Cecyt 2008Cecyt 2008
Cecyt 2008
 
More Press...Less Stress
More Press...Less StressMore Press...Less Stress
More Press...Less Stress
 
Report Incontri Ravvicinati 2011
Report Incontri Ravvicinati 2011Report Incontri Ravvicinati 2011
Report Incontri Ravvicinati 2011
 
Home Projects (1)
Home Projects (1)Home Projects (1)
Home Projects (1)
 
Appca Presentation R Boyle July 2009
Appca Presentation R Boyle July 2009 Appca Presentation R Boyle July 2009
Appca Presentation R Boyle July 2009
 
Paty y Paloma
Paty y PalomaPaty y Paloma
Paty y Paloma
 
Голос Галактики
Голос ГалактикиГолос Галактики
Голос Галактики
 
PO
POPO
PO
 
Solving Business Problems for Our Clients, Each Step of the Way
Solving Business Problems for Our Clients, Each Step of the WaySolving Business Problems for Our Clients, Each Step of the Way
Solving Business Problems for Our Clients, Each Step of the Way
 

Ähnlich wie Tutorial Search With Custom Column Slide Share

A. Lab # BSBA BIS245A-7B. Lab 7 of 7 Database Navigation.docx
A. Lab #  BSBA BIS245A-7B. Lab 7 of 7  Database Navigation.docxA. Lab #  BSBA BIS245A-7B. Lab 7 of 7  Database Navigation.docx
A. Lab # BSBA BIS245A-7B. Lab 7 of 7 Database Navigation.docx
ransayo
 
MBA 620 Module Five Power BI Executive Summary Assignment
MBA 620 Module Five  Power BI Executive Summary AssignmentMBA 620 Module Five  Power BI Executive Summary Assignment
MBA 620 Module Five Power BI Executive Summary Assignment
AbramMartino96
 
Getting Started Guide
Getting Started GuideGetting Started Guide
Getting Started Guide
guest5d007d
 
Developing a ssrs report using a ssas data source
Developing a ssrs report using a ssas data sourceDeveloping a ssrs report using a ssas data source
Developing a ssrs report using a ssas data source
relekarsushant
 
Create a basic performance point dashboard epc
Create a basic performance point dashboard   epcCreate a basic performance point dashboard   epc
Create a basic performance point dashboard epc
EPC Group
 
Cis407 a ilab 3 web application development devry university
Cis407 a ilab 3 web application development devry universityCis407 a ilab 3 web application development devry university
Cis407 a ilab 3 web application development devry university
lhkslkdh89009
 
Sales force certification-lab-ii
Sales force certification-lab-iiSales force certification-lab-ii
Sales force certification-lab-ii
Amit Sharma
 
Once the Application has started up and you are at the Start Page, s.docx
Once the Application has started up and you are at the Start Page, s.docxOnce the Application has started up and you are at the Start Page, s.docx
Once the Application has started up and you are at the Start Page, s.docx
arnit1
 
Creating a data report in visual basic 6
Creating a data report in visual basic 6Creating a data report in visual basic 6
Creating a data report in visual basic 6
mrgulshansharma
 
systems labOnce the Application has started up and you are at the .docx
systems labOnce the Application has started up and you are at the .docxsystems labOnce the Application has started up and you are at the .docx
systems labOnce the Application has started up and you are at the .docx
perryk1
 

Ähnlich wie Tutorial Search With Custom Column Slide Share (20)

BI Step by Step
BI Step by StepBI Step by Step
BI Step by Step
 
Building your first power apps from scratch a step by step walkthrough
Building your first power apps from scratch   a step by step walkthroughBuilding your first power apps from scratch   a step by step walkthrough
Building your first power apps from scratch a step by step walkthrough
 
A. Lab # BSBA BIS245A-7B. Lab 7 of 7 Database Navigation.docx
A. Lab #  BSBA BIS245A-7B. Lab 7 of 7  Database Navigation.docxA. Lab #  BSBA BIS245A-7B. Lab 7 of 7  Database Navigation.docx
A. Lab # BSBA BIS245A-7B. Lab 7 of 7 Database Navigation.docx
 
Mca 504 dotnet_unit5
Mca 504 dotnet_unit5Mca 504 dotnet_unit5
Mca 504 dotnet_unit5
 
Birt (business intelligence and reporting tools)
Birt (business intelligence and reporting tools)Birt (business intelligence and reporting tools)
Birt (business intelligence and reporting tools)
 
MBA 620 Module Five Power BI Executive Summary Assignment
MBA 620 Module Five  Power BI Executive Summary AssignmentMBA 620 Module Five  Power BI Executive Summary Assignment
MBA 620 Module Five Power BI Executive Summary Assignment
 
CREATING A DATASET FROM EXCEL IN POWER BI REPORT BUILDER
CREATING A DATASET FROM EXCEL IN POWER BI REPORT BUILDERCREATING A DATASET FROM EXCEL IN POWER BI REPORT BUILDER
CREATING A DATASET FROM EXCEL IN POWER BI REPORT BUILDER
 
Getting Started Guide
Getting Started GuideGetting Started Guide
Getting Started Guide
 
Developing a ssrs report using a ssas data source
Developing a ssrs report using a ssas data sourceDeveloping a ssrs report using a ssas data source
Developing a ssrs report using a ssas data source
 
Tutorial on how to load images in crystal reports dynamically using visual ba...
Tutorial on how to load images in crystal reports dynamically using visual ba...Tutorial on how to load images in crystal reports dynamically using visual ba...
Tutorial on how to load images in crystal reports dynamically using visual ba...
 
Create a basic performance point dashboard epc
Create a basic performance point dashboard   epcCreate a basic performance point dashboard   epc
Create a basic performance point dashboard epc
 
Learn What's New in Tableau 9.0
Learn What's New in Tableau 9.0Learn What's New in Tableau 9.0
Learn What's New in Tableau 9.0
 
Cis407 a ilab 3 web application development devry university
Cis407 a ilab 3 web application development devry universityCis407 a ilab 3 web application development devry university
Cis407 a ilab 3 web application development devry university
 
Sales force certification-lab-ii
Sales force certification-lab-iiSales force certification-lab-ii
Sales force certification-lab-ii
 
Once the Application has started up and you are at the Start Page, s.docx
Once the Application has started up and you are at the Start Page, s.docxOnce the Application has started up and you are at the Start Page, s.docx
Once the Application has started up and you are at the Start Page, s.docx
 
Creating a data report in visual basic 6
Creating a data report in visual basic 6Creating a data report in visual basic 6
Creating a data report in visual basic 6
 
SAP BW - Master data load via flat file
SAP BW - Master data load via flat fileSAP BW - Master data load via flat file
SAP BW - Master data load via flat file
 
systems labOnce the Application has started up and you are at the .docx
systems labOnce the Application has started up and you are at the .docxsystems labOnce the Application has started up and you are at the .docx
systems labOnce the Application has started up and you are at the .docx
 
Intro to ArcGIS ModelBuilder
Intro to ArcGIS ModelBuilderIntro to ArcGIS ModelBuilder
Intro to ArcGIS ModelBuilder
 
Getting Started with SharePoint Status Indicators - EPC Group
Getting Started with SharePoint Status Indicators - EPC GroupGetting Started with SharePoint Status Indicators - EPC Group
Getting Started with SharePoint Status Indicators - EPC Group
 

Kürzlich hochgeladen

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Kürzlich hochgeladen (20)

Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 

Tutorial Search With Custom Column Slide Share

  • 1. SlideShare.netSeptember 2009SharePoint Search: Mapping Columns in SharePoint Lists To allow searching in specific document typesGeorge Catrombon Contents TOC 1-3 SUMMARY PAGEREF _Toc241928898 3SETUP SHAREPOINT TO PREPARE FOR THE SEARCH PROBLEM PAGEREF _Toc241928899 3CRAWL THE NEW CONTENT PAGEREF _Toc241928902 9DEMONSTRATION OF THE SEARCH PROBLEM PAGEREF _Toc241928903 12STATEMENT OF THE PROBLEM PAGEREF _Toc241928904 14THE FIX – ADD MAPPING PAGEREF _Toc241928905 14PERFORM A FULL CRAWL AGAIN TO CAPTURE OUR MAPPING PAGEREF _Toc241928906 18PERFORM THE SEARCH AGAIN PAGEREF _Toc241928907 18CONCLUSION PAGEREF _Toc241928909 19 SUMMARY This tutorial explains how to overcome a specific problem with searching in SharePoint. The problem presents itself when a search is performed looking for: A key word in a document ( Example: search for the word “wireless”) Additionally specifying the type of document to search in when the types are defined in a list with a custom column. The solution to this search problem is to create a mapping in SharePoint on the custom column in the list through SharePoint Shared Services search configuration. This tutorial will explain how to perform this mapping. SETUP SHAREPOINT TO PREPARE FOR THE SEARCH PROBLEM To recreate the problem, we need to create a custom list in SharePoint. We will name this library Document Types List as shown in Figure 1. Then, we add two line items to the list as shown in Figure 1 below by clicking New > New Item. Note that we have specified two document types: Profile and Policy. Figure 1 Next, we need to create a document library, where the document types that are allowed to populate that library must be Profile or Procedure as denoted on our list in Figure 1. So, we create a new library named Test Search Library as per SharePoint standard practice. Refer to Figure 2 below. Figure 2 – Create a library as per standard practice Now we need to create a column in this library, but the value that is allowed to appear in that column must be limited to the Document Types that are on the Document Types List, specifically, those denoted in the Document Types column (E.g. Profile or Procedure). No other types are allowed. To create this column, we click on Settings > Create Column as shown in Figure 3. Figure 3 The column we specify will be created by clicking the radio button Lookup (information already on the site). Then, in the Get information from list box, we will choose our list Document Types List. Then, from the In this column drop down, select Document Type. We name the column Document Type. Refer to Figure 4 for all these settings. Figure 4 After this, our document library will appear as in Figure 5. Note our new column named Document Type which is a lookup column. Q. What do we mean by a lookup column? A. When we add a document to the library, we will have to specify the type of document by means of a drop down list box bound to the column. The drop down list box will contain the values Profile and Procedure from the Document Types List. Recall that our library can only contain document types that are on that list. Our drop down list contains the only types we can pick from. We will see this action in a moment. Figure 5 At this point, we create two files using Notepad. Each file will contain a single word “wireless”. We will save those two documents to a directory of our choice. The names of the documents are Profile.txt and Procedure.txt as shown in Figure 6. Figure 6 Our NotePad documents (which both contain the word “wireless”) are shown in Figure 7 & 8. Figure 7 Figure 8 We now add those two documents to our Library by clicking Upload > Upload Document. Browse to our notepad file Policy.txt and select it. We will then get an additional web page where we need to specify the type of document it is as shown in Figure 9. Figure 9 – Note the dropdown is bound to the Document Type column in the Document Types List list. The result will be a new document added as shown in Figure 10. Figure 10 We repeat the procedure to upload Procedure.txt, but we specify that the document type is Procedure rather than Profile. Refer to Figure 11. Figure 11 So, at this point, we have our custom list with custom column, and we have a custom library with two documents in it, one of each type from the list. Now, we need to have SharePoint crawl the new content. CRAWL THE NEW CONTENT To force a crawl of the content we need to use Shared Services Administration as shown in Figure 12. Figure 12 We click on SharedServices_Content (Default) (or whatever you named yours) link from Figure 12 and the result will be as in Figure 13. Figure 13 We then click on Search Settings as shown in Figure 13. This results in another screen as shown in Figure 14. Figure 14 Click on Content sources and crawl Schedule as shown in Figure 14. The resulting page will be as in Figure 15. It is from this page that we force the crawls. Figure 15 Right click on each line item as shown in Figure 16, and select Start Full Crawl. See Figure 16. Wait for the crawls to complete by refreshing the page. When crawling is in progress, the result should look like Figure 17. Figure 16 Figure 17 – crawling in progress Wait for the crawls to complete. THE SEARCH PROBLEM Now, we want to perform an advanced search. We do this from the Search tab on the site. Click on the Search tab and the search page will appear as in Figure 18. Figure 18 Now, we need a very specific search to demonstrate the problem. We want to search for the word wireless, but only in the documents of type Profile. We do not want to search in documents of type Procedure. To do this, we need an advanced search. Click on Advanced Search and the result is shown in Figure 19. Enter the search as shown in Figure 19. Note that we are specifying to only search in documents of type Profile. Figure 19 – only search documents of type Profile When we click the search button, nothing is returned as shown in Figure 20. Figure 20 STATEMENT OF THE PROBLEM We can now define what the problem is. The SharePoint search engine is very smart to index the copy of each of our two documents. In fact, if you run a search just for the word “wireless”, our two documents will be found. However, if you have a custom column as we do specifying the document types, then SharePoint is not smart enough to index that custom column. Therefore, if you try to search with keyword wireless and specify a type of document to search in as we did in Figure 19, the search will fail. You can also try to search the Procedure type and the result will fail as well. THE FIX – ADD MAPPING To fix this problem, we need to add mapping to the search configuration. To add the mapping, we need to go to Shared Services as we did in Figure 13 and click on Search Settings. In the resulting page as shown in Figure 21, click on Metadata property mappings. Figure 21 The result is Figure 22. Figure 22 We click on New Managed Property and the result is as in Figure 23. Figure 23 We then proceed to configure a mapping. Add the two fields as shown in Figure 24. Figure 24 Then, click on the button Add Mapping. This will result in a dialog box as shown in Figure 25. In the Crawled Property Name text box, type ows_ and then click Find. You will then be presented with a list of columns in the site, prefaced with the string ows_. If we scroll down the list, we should see our custom column. See Figure 25 Figure 25 – Our custom column is on the list Then, click on Allow this property to be used in all scopes. Refer to Figure 26. Figure 26 This completes the mapping. PERFORM A FULL CRAWL AGAIN TO CAPTURE OUR MAPPING Perform a full crawl as you did in Figure 16. Wait until it finishes. PERFORM THE SEARCH AGAIN Now if you perform the search as we did in Figure 19, but use the mapping term mpDocumentType. Now we see the search is successful as shown in Figure 27. NOTE: You may have to refresh your browser since the old page may be cached. Figure 27 CONCLUSION We have demonstrated the search problem with SharePoint and have shown the solution. Hopefully, readers will be able to apply this knowledge in the field. END DOCUMENT