Relevance of title field in doc library

Bit of a debate at work and I'm trying to dig up some hard facts.
We have been told that the title field in a document library and is pointless and can lead to user confusion between title/filename and basically adds no value. There has been recent talk of hiding the title field altogether from forms.
My concern is the effect this may have on search results.
We have our own custom meta data fields so this question doesn't relate to collecting meta data - we are covered there.
I have hunted down some info and have read comments saying that title is second only to content when it comes to the search algorithm. I've also read other articles that are less specific and just say it is good.
Is there a definitive answer?
This is a 2010 question but will also apply for our upgrade to 2013 which will be happening soon.
1. How does the title field feature when ranking results.
2. Is there a list/URL that defines all aspects of relevance building? 

Hi ,
Relevance is about how closely the search results that are returned to the user match what the user wanted to find.
The formula to calculate relevance uses two areas of ranking called Static and Dynamic ranking.
Dynamic Ranking (query-dependent ranking) is where the property values or content of an item affects the ranking score. As example the ‘Title’ field can be evaluated against the search criteria and the more important we consider the field
to be, the higher the ranking score will be for items where the value in the ‘Title’ field have a closer match to the search criteria.
Static Ranking (query-independent ranking) is where the content or property values of an item do not determine the ranking of the item.
Dynamic Ranking contains Title Extraction - only performed on Microsoft Office files. In scenarios where the ‘Title’ field of an Office file does not accurately reflect the contents of the item (example when a title of a file is ‘Presentation
1’ or ‘Document 1’), Enterprise Search detects another candidate for title within the body of the content item, and includes this value with the actual title when calculating relevance.
More information, please refer to the link:
http://social.technet.microsoft.com/wiki/contents/articles/20649.sharepoint-2010-improve-search-relevance.aspx
I hope this helps.
Thanks,
Wendy
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
[email protected]
Wendy Li
TechNet Community Support

Similar Messages

  • Document Library set "Title" field automatically equal to "Name" field

    Hi,
    Is it possible to make Title field in document library automatically fill up with File name field? 

    Three ways you could do this really.
    #1 - Write a custom event receiver using .NET
    #2 - Write Javascript on the list form to update the field
    #3 - Create a custom workflow that kicks in when new items are added or modified and that would set the field
    Nikolas Charlebois-Laprade Microsoft Certified Professional Software Engineer and Senior SharePoint Advisor http://nikcharlebois.com

  • JQuery to set Title field to Name field in Document Library

    I want to use some simple JQuery to populate the Title field of a document with the contents of the Name field. I am able to populate the Title field with basic text using:
    <script type="text/javascript">
    $(function() {
    $('input[title=Title]').attr({value: 'Test'});
    </script>
    That works fine - but how can I change it to pass the contents of the Name field into the Title field?  This code runs on the EditForm.aspx for the document library.  Thanks!

    Are you editing the webpart in visual studio and designing custom webpart?

  • Title field clearing / going blank on updates to Office 2010+ documents

    Hi guys. I am having a problem where the Title property on a document (or more specifically any docx or xlsx document) using a certain content type is being made blank when a user edits the document. There are no event receivers and no workflows running
    on the document. Here are the steps that recreate it for any document that uses my custom content type:
    1) Upload a docx file into a library, populating the title field.
    2) Check in.
    3) Go to edit the item - in this case force check-out is in place so it checks out the document.
    4) Change another property. Hit save.
    5) The title field is now blank!
    This only does it on my content type (or any that inherit from it), but I've tested it on 3 different servers with varying degrees of updates and it's the same result every time. There is nothing special about the content type (it inherits from Document)
    and just has a few extra fields in it. I have not included the contents of the elements file used to define it for brevity but happy to provide if needed. Any ideas are welcome.
    Many thanks,
    Mike

    That seems like it's defeating the purpose.  First, we're on an Exchange server that is on our domain.  Second, I'm trying to eliminate end-user input, this method would increase end-user input.  Also, our Exchange server is 2003, from what
    I'm reading here the autodiscover service wasn't added until Exchange 2007.

  • "Title" field not showing up in infopath forms

    We have a custom infopath form for submitting requests. It have  a column called "Title" ( the default Title which is the same one, that will show when you create  a new form library)
     The issue which we are facing is that- while we edit the form template in the designer 2010 view, we are not seeing the "Title" column.
    We had scrolled through the fields section and also rules to check if something is working behind, but not.
    Please let me know how to make this "Title" field visible in designer tool.
    Its showing in the SharePoint form library but not  in infopath designer(while editing).
    My blog: http://sharepointr.com - ZedProg Profile

    Hi ,
    Could you provide a screenshot about your issue?
    The list "Title" column could be displayed and customized in InfoPath Designer.
    Please create a new list to customize with InfoPath Designer, see if it's this particular list issue.
    Please make a copy of this problem list, then create a new "Text box" and bind the data source "Title" in InfoPath Designer for a test, see if this could work for you.
    Thanks
    Daniel Yang
    TechNet Community Support

  • Retrieve Title field values from multiple lists and add into another list

    Hi , Iam trying to retrieve Title field value from multiple lists. and add them into another list. using Javascript. Can any one help me in doing this. Below is the code.. function save() { clientContext = new SP.ClientContext.get_current(); oWebsite = clientContext.get_web(); oList = clientContext.get_web().get_lists().getByTitle('MainList'); clientContext.load(oList); clientContext.executeQueryAsync(OnSucceeded, onQueryFailed); } function GetListItemValue(listName, fieldName) { var list = oWebsite.get_lists().getByTitle(listName); var eventValue = document.getElementById(fieldName).value; eventValue = eventValue.replace(",", ""); var camlQuery = new SP.CamlQuery(); var filterdata = '<view><query><where><eq><fieldref name="Title/"><value type="Text">' + myreqValue.trim() + '</value></fieldref></eq></where></query></view>'; camlQuery.set_viewXml(filterdata); listItems = list.getItems(camlQuery); clientContext.load(list); clientContext.load(listItems, 'Include(Id)'); clientContext.executeQueryAsync(Succeeded,Failed); } function OnSucceeded() { itemCreateInfo = new SP.ListItemCreationInformation(); oListItem = oList.addItem(itemCreateInfo); oListItem.set_item('Title', 'My New Title'); var deptItemLookupField = new SP.FieldLookupValue(); //Problem in below line...I was unable to get ID var getId = GetListItemValue("Listname1", "txtboxname1"); alert("ID" + getId); if (getId != undefined) { deptItemLookupField.set_lookupId(getId); } var getId12 = GetListItemValue("Listname12", "txtboxname12"); alert("ID" + getId12); if (getId12 != undefined) { deptItemLookupField.set_lookupId(getId12); } oListItem.update(); clientContext.executeQueryAsync(itemadded, itemFailed); } function itemadded() { alert('Item added successfully'); } function itemFailed(sender, args) { alert('Item added itemFailed' + args.get_message() + '\n' + args.get_stackTrace()); }
    Raj

    Hi,
    For this requirement, you will need to retrieve all the lists objects you want firstly, then execute the requests one by one to get the value of the Title column using CAML or
    LINQ.
    How to: Retrieve Lists Using JavaScript
    http://msdn.microsoft.com/en-us/library/office/hh185009(v=office.14).aspx
    About
    retrieve list items:
    http://msdn.microsoft.com/en-us/library/office/hh185007(v=office.14).aspx
    You can use
    Promise in your script to make your requests sequentially:
    http://www.shillier.com/archive/2013/03/04/using-promises-with-the-javascript-client-object-model-in-sharepoint-2013.aspx
    http://www.learningsharepoint.com/2013/08/13/using-deferred-and-promise-to-handle-async-calls-in-sharepoint-client-object-model/
    Best regards
    Patrick Liang
    TechNet Community Support

  • Index a List Title field with CSOM

    Hi,
    I create a custom list and set some of the fields to "indexed". 
    The Title field is already created with the List and I would like to index it from CSOM.
    CSOM 2013 has a Field.Indexed property but it does not exist on 2010.
    Any idea?
    Thanks.

    Hi,
    In SharePoint 2010, as a workaround, we can create a Web Service and use Server Object Model to achieve it, then call the web service in Client-Side.
    Creating List Indexes with the SharePoint Object Model
    http://www.instantquick.com/index.php/creating-list-indexes-with-the-sharepoint-object-model?c=elumenotion-blog-archive/lists
    Walkthrough: Creating a Custom ASP.NET Web Service
    https://msdn.microsoft.com/en-us/library/office/ms464040(v=office.14).aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Relevancy of a field in Plant Classification in OGSD

    Hi all,
    I would like to know the relevancy of the field "No inventory guidance in the SA (/ICO/MOC_WK-BSTID)" Keine Bestandführung im SA in German in the configuration node IS Oil and Gas Downstream --> OGSD -->General Settings --> Plant Classification.
    Thanks for the answer,
    PKM

    Hi PKM,
    the flag means that a goods receipt will take place into a plant whereas the stock appears from nowhere.
    Regards,
    Fouad

  • HT4914 My wife and I both have iPhones and iPads. Can we both have access to the same iTunes Match library or do we have to have separate subscriptions?  Our devices are synced to the same computer and we currently download titles from the same library.

    My wife and I both have iPhones and iPads. Can we both have access to the same iTunes Match library or do we have to have separate subscriptions?  Our devices are synced to the same computer and we currently download titles from the same library.  We both use separate apple id's on our devices.

    You need to reconfigure your phone for use with your Apple ID. I suggest you restore yours as new then reconfigure it with your information and Apple ID. Be sure to disable Find My Phone, if it's enabled, before proceeding.
    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    A
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    7. iOS - Unable to update or restore
    Forgotten Restrictions Passcode Help
                iPad,iPod,iPod Touch Recovery Mode
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    You can restore from a backup if you have one from BEFORE you set the restrictions passcode.
    Also, see iTunes- Restoring iOS software.

  • How to read the "Name" field from document library in workflow?

    Hi,
    The task I'm trying to accomplish looks pertty simple: I need to read a value of the item's "Name" field inside the workflow. I try to do it using LookupSPListItem and GetDynamicValueProperties activities. I can get value of the "Title"
    field, also I created custom field and can read it too.
    But the "Name" field always comes empty.
    I guess I need to use some tricky syntax or this field has some different "internal name"?
    The workflow is designed in VS 2013.

    Thank you. Looks correct, since when I enter this path (FileLeafRef) into GetDynamicValueProperties
    and change Entity Type to list of documents it changes to Name
    automatically.
    But somehow it doesn't work too. (:
    I also tried LinkFilenameNoMenu and LinkFilename
    - same result.
    EDIT: Solved. :)
    Looks like FileLeafRef is not loaded by default by LookupSPListItem, so you have to pass this property name via
    Properties collection. The bad news is that in this case other properties won't be loaded if you didn't add them to this collection.
    Anyway, it works. :)

  • Value put in the maintenace view for field of DOC type gets divided by 100

    Hi all,
    We have a product table ZPROD_T which contains one quantity column (QUANT) of the data type DOC. We have also created a view and a maintenance view for this table.
    The problem is that when we add new values to the table using the maintenance view, the value that we add to the QUANT field gets devided by houndred. E.g. if we put in 4 in the QUANT field (type DOC), the value that we later see in the table is 0,04!
    How do we go about to solve this problem and get the correct value in the table? Should we change the maintenance view somehow or change the data type in the QUANT field from DOC to something else?
    All help is greatly appriciated!
    BR,
    Armin

    Yes, that would be an option, but I was kinda hoping there was another way to solve this problem. Namely, when we would like to have ability to have decimal values in that field, e.g. if we have quantity in sqr meters or meters. Also if we change data type to QUAN than we need to put values in the "Currency/Quantity fields" in the table ZPROD_T, and at the time we are not sure about what unit of measure we are gonna have!
    Is it possible to keep DOC data type and still get the correct values in the table?
    /Armin

  • Can't open files in Doc Library with IE

    hello all:
    I have a document library which has recently shown an issue.  There are many users that access this library with no problem.  Recently, a few users (3-4) have complained that they are no longer able to view files.  They are definitely able
    to see the folder in which these files reside and then even see the file names & types.  However, when they click on the files they are getting a message saying they don't have permission to view.  The permissions have never been altered and
    they are showing that they have Contribute level of permissions for this Doc Library.
    Now here is the really odd part...it works fine with Chrome, but not IE.  I have tried various versions of IE from 9-11, both in & out of compatibility mode.
    Any suggestions you might have would be appreciated.

    Check these threads, can be helpful for you
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/71cdfcea-2b0c-4a8e-a8d3-1994c5f310b9/cant-open-a-sharepoint-document-template-with-word-2013?forum=sharepointgeneralprevious
    http://social.technet.microsoft.com/Forums/office/en-US/3cbe6b22-e307-485b-a1af-1699cdf5ba86/office-2013-applications-are-not-able-to-open-sharepoint-2007?forum=officeitpro
    Also check this link
    http://deepinsharepoint.wordpress.com/2013/11/11/ie-cannot-open-office-documents-from-sharepoint-2013/
    Adnan Amin MCT, SharePoint Architect | If you find this post useful kindly please mark it as an answer.

  • Illustrator Files in Bridge filename used in Title field

    When annotating Illustrator files in CS3 Bridge, the original filename auto populates the "Title" field. Is there a reason for this and does anyone know of a workaround?
    We are converting AutoCad files to AI for use in publications using Framemaker. Frame doesn't play very nice with AutoCad (reason for conversion).

    This suggestion is just a shot in the dark, but check out edit>preferences>metadata. Could it have anything to do with the field "preserve filename"?

  • Display Field "Purchasing Doc No" & "Vendor" in GL Line item of FAGL003 rep

    Dear Experts,
    To display of Purchasing Doc No (EBELN) & Vendor(LIFNR) in GL line item of FAGLL03 report we have added both the field in the customization setting of Special Fields in GL Line Item using the following path:-
      Financial Accounting(New)
         General Ledger Accounting(New)
            Master Data 
               G/L Accounts
                  Line Items
                    Define Special Fields for Line Item Display
    After the request got transported to quality client the fields Purchasing Doc No (EBELN) & Vendor(LIFNR) disappears from the lay out list of FAGLL03 report.
    All the screen shots are furnished in the attached file.
    Please advise.
    Regards,
    Alok Parida
    FI Core Team

    Hi Seetaramaiah,
    Please regenerate structure according to following steps.
    Call transaction SE37, enter the function module ITEM_STRUC_EXTENSION and
    execute it with the following parameters:
    BASIC_STRUCNAME: FAGLPOSY
    EXT_STRUCNAME: FAGLPOSYEXT
    EXT_FIELDS_TABNAME: T021S
    I_LSTCL: D
    X_TRANSPORT: ' '
    Regards,
    Joseph

  • Is there a way to batch rename PDFs in a folder with content from the file? i.e. the title field

    Hi, I have a load of documents in a folder. Most have names like 2334.pdf, 3645.pdf etc. Does anyone know of a way to automatically get the title from withing each file and rename the file with that title i.e. doc title.pdf
    I found a product from a-odf.com that claims to do this, but I was hoping to use adobe's product.
    Thanks in advance
    Nelson

    There is no "out of box" tool per se that does this type of task, but you could probably script it with an Action that uses JavaScript.  If you are not familiar with Acrobat JavaScript then you will need to find someone who is familiar with it to assist you in building it.

Maybe you are looking for

  • Mac G4 Freezes/Shuts Down on Its Own

    I have a Powermac G4 that when using, it appears to "freeze". The mouse and keyboard become non functional, and the display looks like it is frozen. BUT The power light appears to be off, giving the impression that the computer has intermittently shu

  • HT5704 Anyone else's phone turn into a paperweight after installing latest update??  Can't get it to turn on at all!

    Tried to hold both buttons together for reset...no avail.

  • Screen gone garbled

    My screen went garbled, blue and green blotchy with only just able to see the buttons for force quit (one program had cancelled restart) Is this the graphics card, the screen (20"LCD Apple), or the Mac? Thanks Hardware Overview: Machine Name: Power M

  • Creation of consolidated invoices in AP from legacy

    We have a requirement where we need to import AP invoices from legacy system. There is a specific requirement where the invoices from legacy system needs to be summed up and create one record in Oracle Payables. For example, if we have 3 invoices wit

  • Logic behind dynamic Text Elements in BEX

    We are trying to find out how BEx gets the "Last Cube Refresh Date."   This can be added as a Text Element in BEx reports. What we are trying to do is determine which date is pulled when a BEx query is running agains a MultiProvider. We have one Mult