How do I include custom URLs in a Sharepoint Search?

I have links pointing to files on our file server.
I would like to have these links show up in a Sharepoint search.
Any idea how to accomplish this?

Hi Packard,
To include the URLs pointing to files on the file server in SharePoint search, I recommend to store the URLs in a list and then you can search the keywords in the list to get the corresponding items.
However, if you want to display the URLs in search results, you need to modify the search result display template to show the field value which is used to store the URLs.
http://blogs.technet.com/b/tothesharepoint/archive/2013/09/11/how-to-display-values-from-custom-managed-properties-in-search-results-option-1.aspx
http://blogs.technet.com/b/tothesharepoint/archive/2013/09/12/how-to-display-values-from-custom-managed-properties-in-search-results-option-2.aspx
And you can also use Content Search web part to show the URLs in search results.
Please edit the web part and then edit the Property Mappings to add the managed property for the field which is used to store the URLs(you need to create the managed property for the crawled property of the field in Search service application first and remember
to do a full crawl).
Best regards.
Thanks
Victoria Xia
TechNet Community Support

Similar Messages

  • How can I include Customer Hierarchy in Customer master IDoc -DEBMAS06 ?

    Hi,
    I am generating Customer master IDoc using basic message type DEBMAS06. But when I include customer hierarchy data while creating customer master, it is not included in any of the segments. The segment containing the data from KNVH is not included in standard.
    How do I include this hierarchy data in the IDoc? If I create a segment, under which basic segment should it  be included and how to update the data in the segment?
    Can anybody help?
    Points assured.
    Best Regards,
    Rajendra

    Hi
       You can use LSMW :-
    1) Create a project , sub project and an object.
    2) execute it from 1 st screen to enter the object.
    3) You will find proces steps.
    4) In Maintain Object Attributes  choose Program Name RFBIDE00.
    or I-DOC or the way you want the input to be.
    5) You can proceed from there following the instruction..

  • How can I include a url (or Link) in my e-mail

    In previous versions of thunderbird I could just go to "include" and then "Link" and in the drop down box just paste in the url I wanted to include into the field link address.
    If I try doing that now I am told something about there being "no know anchor .... "
    Now I have to type in the url again. Using the paste button does not work! WHY?
    As a work around i just paste the url as text into the mail but then it does not show up as a link (underlined in blue), so that the receiver of the mail now has to copy and paste my link instead of just being able to click on it.

    ''Hormazdyar-Kutar [[#question-1040695|said]]''
    <blockquote>
    In previous versions of thunderbird I could just go to "include" and then "Link" and in the drop down box just paste in the url I wanted to include into the field link address.
    If I try doing that now I am told something about there being "no know anchor .... "
    Now I have to type in the url again. Using the paste button does not work! WHY?
    As a work around i just paste the url as text into the mail but then it does not show up as a link (underlined in blue), so that the receiver of the mail now has to copy and paste my link instead of just being able to click on it.
    </blockquote>
    Yes it does, the conversion is part of the send process. if you look in your sent mail they will be links.

  • How can I use custom urls for my clouds?

    Currently my clouds are [cloudname].adobecqcloud.com, but how do I redirect or point them to [mysite].com?  Or say, for my development cloud, how would I point it to dev.[mysite].com?  I need to be able to control this ASAP.  Thank you for your help.

    Hi,
    You have the choice between 2 topologies when creating your AWS account in Cloud Manager:
    1) Development/Testing
    2) Staging/Production
    In order to preserve your DNS record from changing and have it always pointing to your site, you need to use the Staging/Production topology that includes an ELB in front of the Dispatcher instance(s). In this scenario, you need to point your DNS CNAME record to the DNS name associated with the ELB, that you can retrieve from the AWS console (will be added to Cloud Manager UI soon). Even when you pause/start your cloud, the ELB remains up and running, therefore after restarting your cloud the mapping of your DNS CNAME record to the ELB DNS name will be functional with no delay.
    Using the Development/Testing topology, every time you pause/restart the cloud from Cloud Manager, the IP address of the instances change because it is using dynamic IPs. Therefore, even if you point your DNS CNAME record to the name of the instance (ex: mysite.com pointing to mysite.adobecqcloud.com), it will take some time for the new DNS/IP mapping (mysite.adobecqcloud.com / new IP address of Dispatcher) to propagate. Note: there is no ELB configured for this topology.
    The main reason for using this method is to eliminate the need for using EIP address (static IP address) when it's not really necessary and because they are hard to get from Amazon. But it's also for not paying for EIP address when they are not used (cloud is paused/stopped).
    Hope this helps answer your question.

  • How to get only custom fields from a SharePoint 2010 list?

    I am working with the Client Side Object Model. In a console application I am retrieving all fields from a custom list. The problem is the Clientcontext fetches me a bunch of internal fields I do not want to be included. Also this causes some of the fields
    to appear more than once.
    string siteURL = "http:XYZ";
    ClientContext context = new ClientContext(siteURL);
    Web oWebSite = context.Web;
    context.Load(oWebSite);
    context.ExecuteQuery();
    //Get the list by title
    List produktKatalogListe = spLists.GetByTitle("Produktkatalog");
    CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXml = "<View/>";
    ListItemCollection listItems = produktKatalogListe.GetItems(camlQuery);
    context.Load(produktKatalogListe);
    context.Load(listItems);
    context.Load(produktKatalogListe.Fields);
    context.ExecuteQuery();
    foreach(Field field in produktKatalogListe.Fields)
    Console.WriteLine("{0} - {1} - {2} - {3} - {4}",field.Title,field.InternalName,field.Hidden,field.CanBeDeleted,field.FieldTypeKind);
    Is there a way to print only custom fields? This would mean omitting fields like
    internalID, GUID...
    I tried the following:
    if(!field.Hidden)
    Console.WriteLine("{0} - {1} - {2} - {3} - {4}",field.Title,field.InternalName,field.Hidden,field.CanBeDeleted,field.FieldTypeKind);
    Unfortunately this not only does not solve the issue but is also not a very good solution for the case I do want to display custom but hidden fields.
    Algorithmen und Datenstrukturen in C#:
    TechNet Wiki

    The following approach seems to solve the issue. Instead for checking if the field is not
    Hidden I checked whether it is not FromBaseType.
    if(!field.FromBaseType)
    Console.WriteLine("{0} - {1} - {2} - {3} - {4}",field.Title,field.InternalName,field.Hidden,field.CanBeDeleted,field.FieldTypeKind);
    Algorithmen und Datenstrukturen in C#:
    TechNet Wiki

  • How to make a custom column unique in sharepoint?

    in sharepoint i created workflow, and in tasks lists i added 3 custom columns
    my requirement is in those 3 , 1 column should be unique, For example, i added columns, empId,name dept,
    in those empId should be unique, if any one who enter the same empId while creating, it won't accept,
    is it possible?
    any ideas, thanks in advance

    hi,
    but i don't know why you are trying to map with Managed Property.
    to find a column unique or not what is the need to do above process?
    if you add custom column in a list, it should be in the lists, if it is not visible in the default view then
    follow this link.
    http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1689192&SiteID=1
    if you want the code, how to check the column is unique or not through events see here
    http://www.codeproject.com/spoint/ExtendingSPS.asp?print=true
    download the code and let me know if any issues.
    thanks

  • How to create a custom Contacts list in SharePoint 2010 from accounts already in AD

    Hi folks,
    Newbie to SharePoint but not to being an Administrator.  Problem is that in my new functions I no longer am an Admin.
    I have been asked to post contact lists (Excel) on the SharePoint site.  (fairly easy to do)
    But I though....we already have these people in AD and the GAL
    Why can't I just import what I want only and display that in SharePoint.
    I assume this is possible?
    I do not have SharePoint designer nor any programming experience....so no coding for me.
    Running SharePoint 2010 and Outlook 2010
    Can anyone guide me or give me info on how to do this?
    I do not want everyone in the AD/GAL.  Just some specific names with their contact info

    Hi,
    Please check this
    http://beyondweblogs.com/update-user-profile-in-sharepoint-programmatically/

  • How to include a URL in an XML fragment

    Hello , my general question is how can I include a URL as a literal in an XML fragment , I tried this(please look at the bold part) but it would'nt work , I am getting a compile error because supposedly "<" is a special character in XML so how do I escape it or indeed how do I represent my URL? Your help is highly appreciated
    <EndpointReference xmlns="http://schemas.xmlsoap.org/ws/2003/03/addressing [b]<https://webmail.bearingpoint.com/exchweb/bin/redir.asp?URL=http://schemas.xmlsoap.org/ws/2003/03/addressing> ">
    <Address>https://secure-ausomxbxa.crmondemand.com/Services/Integration;j <https://webmail.bearingpoint.com/exchweb/bin/redir.asp?URL=https://secure-ausomxbxa.crmondemand.com/Services/Integration;j> sessionid=</Address>
    <ServiceName xmlns:ns1="urn:crmondemand/ws/opportunity/10/2004">ns1:Opportunity</ServiceName>
    </EndpointReference>

    I don't know why you would want to surround your URL with < and > characters.
    But the XML rule for escaping those characters in text nodes and attributes is that you escape < as < and > as >. The fact that URLs are involved in your case doesn't make any difference to that rule.
    And normally if you're using XML software (e.g. Transformer, or Xerces's serializer) to write the document, it will take care of that detail for you. On the other hand if you're using ordinary java.io classes to write the document, you have to apply that rule yourself.

  • Suddenly, my custom url buttons disappeared from the navigation bar and I can no longer add new ones. FF22

    I am using Firefox 22 (I like its features and do not want the features added in later version.) I have added a handful of custom URL buttons to the navigation bar that allow me to go instantly to websites I visit frequently. There was/is a function in Firefox for adding such buttons. This morning, after leaving my computer on all night, I found that the custom buttons had disappeared and I could no longer find the function for adding new ones. Can you tell me what has happened and how I can add custom URL buttons? I will appreciate your help. Thank you.

    I solved my own problem. This function was added by Google Shortcuts, which somehow became disabled. After fussing ariound for a few minutes. I was able to restore it.

  • How do I include a page from web search into an Email?

    I have a HP TouchSmart 610-1147c Desktop computer. running Windows 7 64 bit.  I should have known the answer to this question years ago, but I don't....terrible huh?  Anyway, how do I include a page from a web search that I did into an Email?  Believe it or not, I've never had to do this before, so don't have the faintest idea how to do this.  I have a feeling that it would be sent as an attachment, but how don't know how to do that!!
    I would appreciate any help that anyone would take the time to give me.  I thank you beforehand for having patience with me and my silly question.
    Auntie CC
    This question was solved.
    View Solution.

    Well, the way I would do it is to copy and paste the web address in the email, so the recipient can click on the link and get right to the Web page.
    For example, I just googled "horses," and here is the result of that search:
    http://www.google.com/#hl=en&output=search&sclient=psy-ab&q=horses&oq=horses&aq=f&aqi=g4&aql=&gs_l=h...
    I highlighted the Web address, copied it, and then pasted it in the response.  Same thing can be done into an emial.
    Does that make sense?  Or were you looking for something else?
    GeorgeFN
    GeorgeFN
    I work on behalf of HP.

  • How to develop custom add-in for sharepoint designer 2010

    Hi ,
    Can anybody suggest me how to create a custom add-in for sharepoint designer 2010?
    Are there any templates through which i can create a managed add-in using C#? or developing COM add-in (VB6) is the only solution?
    Please suggest.
    Regards
    Sujasree

    Hi,  Sujasree
           Based on my knowledge, there have not been public samples and walkthroughs for SharePoint Designer 2010 add-in.
           MSDN provides some sample for Word and Excel: 
    Office Development Samples and Walkthroughs:
    http://msdn.microsoft.com/en-us/library/z63ctsh2.aspx
           Additionally, VS 2010 have not provide such templates yet.
           So would you please share your business requirement with us?
           SPD is a just client to manage and customize SharePoint site, its powerful but difficult to do extension.
           You could also consider builting your custom add-in elsewhere, e.g.: in a customized admin page or webpart, which is easy to achieve.
           Hope this can help!
    Best Regards,
    Aaron

  • Create a custom Master Page in SharePoint Foundation 2013

    Hi,
    I am new to SharePoint foundation.
    I am trying to create a custom master page and save it as template, so that i can use it for all other sub sites. But i don't know where to start. Also i tries searching in Google, i got results for share point and not for share point foundation.
    So, Please give me a step by step procedure or a link to step by step procedure on how to create a master page, save it as template and use it for a sub site.
    Thanks in advance,
    Gowtham R

    Few points to note related to SharePoint Master page:
    You don't need to create master page template. If you deploy your master page in site collection level you can reuse the same master page in subsites without copying again and again, rather just by referencing
    You have not mentioned how you are going to deploy your master page. If you have any Visual Studio (VS) solution already, try to add your  master page in the VS solution and deploy your master page (and other branding components) as SharePoint WSP
    solution.
    Deploying master page will not activate the master page, you need to use some kind of 'Web Level Feature' to activate your branding - the feature will basically set the master page property of SharePoint site to your custom master page.
    Please follow the links below for steps by steps instructions (and you will find many just by googling 'sharepoint master page visual studio'):
    http://frederik.se/how-to-deploy-a-custom-master-page-in-sharepoint-2013-using-visual-studio/
    http://joshuaorimogunje.wordpress.com/2011/10/05/how-to-create-custom-master-page-for-sharepoint-2010-using-visual-studio-2010/
    http://blogs.msdn.com/b/bobgerman/archive/2011/01/31/packaging-master-pages-and-page-layouts-with-visual-studio-2010.aspx
    http://go.limeleap.com/community/bid/291931/Creating-a-Custom-SharePoint-Master-Page-with-jQuery-Using-Visual-Studio
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

  • Customer field account assignment - F4 - search help exit

    Hi all,
    I have a question with regard to a F4 search help exit I'm try to build for a new CUF in the account assignment (include INCL_EEW_PD_ACC_CSF).
    I've successfully created everything (search help + F4 search exit (read R/3 table)), but when I want to include restricted the search with certain filter values entered on the screen I'm stuck.
    I tried to achieve this by passing the parameters entered on the search screen to the RFC read table function, but in fact I'm not able to read the <b>screen values</b> (using 'DYNP_VALUES_READ'):
    CALL FUNCTION 'DYNP_VALUES_READ'
            EXPORTING
              dyname               = lc_dyname_1
              dynumb               = lc_dynumb_1
              translate_to_upper   = 'X'
            TABLES
              dynpfields           = li_fields_filter
    I'm always getting an invalid dynpro error (I've tried passing SAPLBBP_PDH_ACC, SAPLBBP_SC_UI_ITS, SAPLBBP_CUF,...).
    Does anybody know how I can include de filter values of my search screen in my search ?
    Thanks in advance,
    Kristof

    Hi
    Which SRM version are you using ? What's your detailed requirement ?
    <b>You need to call these function modules inside your search help exit to fetch the user-entered value and then process it accordingly as per your requirements.</b>
    <u>Please go through these function modules.</u>
    *--- Get the user-entered fieldname
    <u>    CALL FUNCTION 'F4UT_PARAMETER_VALUE_GET'</u>
    *--- Map the Results
    <u>    CALL FUNCTION 'F4UT_RESULTS_MAP'</u>
    <b>Other related links -></b>
    Re: Search helps - CASE sensitive
    Re: Search Help - format problem
    Hope this will help.
    Regards
    - Atul

  • Assign custom infoset to PA30 free search

    Hi
    Could you please let me know how to assign  the custom infoset to PA30 free search?
    Thanks

    Check with this program, but I am not sure.
    SAPLHRBAS00_GS_DIALOGS

  • XMII - How to include custom transactions into services.... ?

    Hello XMII Gurus:
    We have done some customization in XMii to develop custom transactions. Now the dilemma is how to give end users access to these new transactions. Working with the developers I see that you can have URLs associated with these transactions, but I am looking for a way to associate a transaction with a service, so that it can be included in a security role, which in turn can be assigned to a user.
    Any help is much appreciated.
    Regards,
    KT

    Jamie:
    I have a custom URL transaction in place, works fine with a USER-ID which has the SAP delivered XMII Developer security role assigned. What I am trying to figure out is the service within the XMII Developer role which makes this possible.
    For this, I made a custom role in UME and assigned it all the services which were under the developer role, and to my surprise it didn't work. I have also taken care of the reader/writer role assignment to transaction through the workbench.
    Do you know why this is happening, am I missing something here?
    Regards,
    KT

Maybe you are looking for

  • Ipod playlists to itunes playlists or CD

    I recently changed computers and so my new itunes doesn't have all the playlists that my ipod has - does anyone know how i can transfer my ipod playlists back to itunes playlists or CDs? lostsoul

  • Missing Data after extraction

    Hi, I have a generic datasource in R3, delivering some 20 plus fields. When I check in RSA3, I get all data, for full extraction or even selective extraction. I have replicated and activated the DS in BW. Now when I extract the data in BW for a singl

  • HELP CANNOT IMPORT ASSETS!!

    I receive the error "stream requested does not exist" when I attempt to import mpeg 2 video to encore 2.0. I have done a bitrate viewer analysis and my results are as follows: Num. of picture read: 1305 Stream type: MPEG-2 MP@ML VBR Resolution: 720*4

  • Problems with autofill when editing address book entries

    When i try to change eg miller to Miller, anna to Anna etc 1) the initial letter remains lower case and 2) even worse, another iller/nna is added on to the end - milleriller, annanna etc. I've tried deleting the whole name and starting again - no joy

  • ITunes has gone crazy in Mountain Lion - HELP!

    I just upgraded to Mountain Lion, and now iTunes appears to take over my computer whenever I have my iPhone, iPod or iPad attached. If I switch to another app, the computer switches back to iTunes after a few seconds. If I quit iTunes, it starts up a