If same file name but file types are different, we should get only particular file type in search results.

Hi Team,
If filename is same for .doc and .pdf, only .pdf file should come in search results. For example, Attendee.doc, Attendee.pdf are available, we should get only .pdf in the search
results.
Please help us on this how to achieve.
Thanks,
Manjeera

Hi Manjeera,
I think you should use KQL / Managed properties, refer these links for more information -
use Property restriction queries in KQL and set filetype:pdf
http://msdn.microsoft.com/en-us/library/ee558911.aspx
http://msdn.microsoft.com/en-us/library/office/ff394509(v=office.14).aspx
http://technet.microsoft.com/en-us/library/jj219630.aspx
http://blogs.msdn.com/b/nadeemis/archive/2012/08/24/sharepoint-2013-search-rest-api.aspx
and these links -
Configure result sources for search in SharePoint Server 2013
http://technet.microsoft.com/en-us/library/jj683115.aspx
How To Customize SharePoint 2013 Search Results Using Query Rules and Result Sources
http://blogs.technet.com/b/mspfe/archive/2013/02/01/how-query-rules-and-result-sources-can-be-used-to-customize-search-results.aspx
Hope this helps!
MCITP: SharePoint 2010 Administrator
MCTS - MOSS 2007 Configuring, .NET 2.0
| SharePoint Architect | Evangelist |
http://www.sharepointdeveloper.in/
http://ramakrishnaraja.blogspot.com/

Similar Messages

  • I am unable to retrieve spreadsheets.  Numbers displays the "Welcome To Numbers" page but does not allow saved spreadsheets to be opened.  It offers the "Open Recent" choice and displays saved file names but does not allow these files to be accessed.

    I recently upgraded to Numbers 3.5.2.  I have an older Macbook Pro (2009) and I run Yosemite 10.10.2.  I am unable to open any saved files that were created with earlier versions of Numbers.  When I open the Numbers app, I am offered the Welcome To Numbers page.  When I choose the 'Open Recent' option, I am offered the greyed names of files that I had recently used, however, I am unable to open any of these files (no error message is displayed).  Welcome To Numbers stays on the screen.  I tried opening the app by clicking on the file name but it produced the same results.  I am having a similar problem with Pages.   I suspect a compatibility problem between the new OSX and the new iWork offerings.   Has anyone else encountered this problem?  Does it require a setting change or is it a bug?

    I managed to download and install the iWork '09 apps.  However, when I attempt to open the app, I receive this error message:
    Numbers cannot be opened because of a problem.
    Check with the developer to make sure Numbers works with this version of OS X.  You may need to reinstall the application.  Be sure to install any available updates for the application and OS X.
    Problem Details and Configuration:
    Process:          Numbers [39838]
    Path:               /Applications/iWork '09/Numbers.app/Contents/Mac OS/Numbers
    Identifier:          com.apple.iWork.Numbers
    Version          ???
    Build Info:     Numbers-2990000~12
    Code Type:     X86 (Native)
    Parent Process:  ??? [1]
    Responsible:     Numbers [39838]
    User ID:          501
    Any thoughts as to what has to happen next?  I am running the latest OS X available (Yosemite 10.10.2)

  • How To Create Table View With Same Column name But Different Table?

    Hi All,
    I have the problem to create a tableview with same column name but in different table.
    The Table that i have:-
    Table - PAC051MPROFORMA
    Column - mrn,visitid
    Table - PAC051TPROFORMA
    Column - mrn,visitid
    Table - PAC052MTRANSBILL
    Column - mrn,visitid
    Then i want to create a table view to view that table. This is my SQL
    CREATE VIEW pacviewproforma (mrn,visitid,mrn,visitid,mrn,visitid)
    As Select PAC051MPROFORMA.mrn,PAC051MPROFORMA.visitid,PAC051TPROFORMA.mrn,PAC051TPROFORMA.visitid,PAC052MTRANSBILL.mrn,PAC052MTRANSBILL.visitid
    where
    *(a.PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)*
    and
    *(a.PAC051TPROFORMA.mrn=PAC052TRANSBILL.mrn)*
    That SQL Return this error = ORA-00957: duplicate column name
    Then I modify that SQL to
    CREATE VIEW pacviewproforma (mrn,visitid)
    As Select PAC051MPROFORMA.mrn,PAC051MPROFORMA.visitid,PAC051TPROFORMA.mrn,PAC051TPROFORMA.visitid,PAC052MTRANSBILL.mrn,PAC052MTRANSBILL.visitid
    where
    *(a.PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)*
    and
    *(a.PAC051TPROFORMA.mrn=PAC052TRANSBILL.mrn)*
    This time this error return = ORA-01730: invalid number of column names specified
    What should i do?
    Thanks...

    Hi,
    SQL> CREATE VIEW pacviewproforma (mrn,visitid,mrn,visitid,mrn,visitid)
      2  As Select
      3  PAC051MPROFORMA.mrn,
      4  PAC051MPROFORMA.visitid,
      5  PAC051TPROFORMA.mrn,
      6  PAC051TPROFORMA.visitid,
      7  PAC052MTRANSBILL.mrn,
      8  PAC052MTRANSBILL.visitid
      9  from PAC051MPROFORMA,PAC051TPROFORMA,PAC052MTRANSBILL
    10  where
    11  (PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)
    12  and
    13  (PAC051TPROFORMA.mrn=PAC052MTRANSBILL.mrn);
    CREATE VIEW pacviewproforma (mrn,visitid,mrn,visitid,mrn,visitid)
    ERROR at line 1:
    ORA-00957: duplicate column namePlease give different names to each column.
    Something like this..
    SQL> CREATE OR REPLACE VIEW pacviewproforma (MPROFORMA_mrn,MPROFORMA_visitid,TPROFORMA_mrn,TPROFORMA
    _visitid,MTRANSBILL_mrn,MTRANSBILL_visitid)
      2  As Select
      3  PAC051MPROFORMA.mrn,
      4  PAC051MPROFORMA.visitid,
      5  PAC051TPROFORMA.mrn,
      6  PAC051TPROFORMA.visitid,
      7  PAC052MTRANSBILL.mrn,
      8  PAC052MTRANSBILL.visitid
      9  from PAC051MPROFORMA,PAC051TPROFORMA,PAC052MTRANSBILL
    10  where
    11  (PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)
    12  and
    13  (PAC051TPROFORMA.mrn=PAC052MTRANSBILL.mrn);
    View created.
    SQL> DESC  pacviewproforma;
    Name                                      Null?    Type
    MPROFORMA_MRN                                      NUMBER
    MPROFORMA_VISITID                                  NUMBER
    TPROFORMA_MRN                                      NUMBER
    TPROFORMA_VISITID                                  NUMBER
    MTRANSBILL_MRN                                     NUMBER
    MTRANSBILL_VISITID                                 NUMBER
    ORA-01730: invalid number of column names specifiedThe list of column nmae you specified during the CREATE VIEW should match with the SELECT list of the view.
    Twinkle

  • How could JNDI differentiate two ejb have same jndi name but on difference

    how could JNDI differentiate two ejb have same jndi name but on difference server
    suppose that:
    we have two J2EE Server those are Server1 and server2, and both of them have a ejb named Test deployed on it, and I need a java client maybe it is a java Application, servlet or ejb in server1 to get the reference to the ejb name Test, how to use JNDI to get the reference to both of them. those two ejb have same name but on difference server. how could the java client locate them?

    You've hit problem #1 in the alleged scalability of EJB containers.
    Basically, the whole setup assumes that you're only dealing with one naming service. The expectation is that a given name is bound to a single object, which in this case is the Home interface.
    Some systems support clustering, which can allow you to get round this, but the details will depend on you EJB container vendor,
    Sylvia.

  • Iam using iphone 4s and Iphone 5s with same apple ID but my network is different and whenever Iam getting call in i5s and in my both handset same calls are coming. Please provide me solutions

    Iam using iphone 4s and Iphone 5s with same apple ID but my network is different and whenever Iam getting call in i5s and in my both handset same calls are coming. Please provide me solutions

    On both devices, go to Settings>Facetime and turn off cellular calls.
    ~Lyssa

  • My zagg key board connects but the keys I type either don't type character, type 2 characters that are different when I hit only 1 key, or doesn't type at all. Is there a way to reset zagg keyboard to factory settings?

    My zagg key board connects but the keys I type either don't type character, type 2 characters that are different when I hit only 1 key, or doesn't type at all. Is there a way to reset zagg keyboard to factory settings?

    Recharging is a good thing to try. They do start to act odd when the battery gets low. Beyond that, just like Tom says, contact Zagg. I have one of their keyboards and the company has wonderful customer service.

  • When i open an irc link with a channel name that contains "~" at the end, firefox (14.0.1) opens the same channel name but with "%7E" instead of "~" at the end

    when i open an irc link with a channel name that contains "~" at the end firefox (14.0.1) opens the same channel name but with "%7E" instead of "~" at the end
    http://img835.imageshack.us/img835/2856/clipboard05nq.jpg

    I can not open the image, but I can say something in general about the tilde.<br>
    The tilde "~" is an unreserved character and therefore it can be replaced by its percent-encoded form "%7E" inside a URI without changing meaning. See<br>
    http://en.wikipedia.org/wiki/Percent-encoding<br>
    According to section 2.3 of RFC3986 we should prefer the unencoded form so this behavior seems to be a bit out-dated.<br>

  • I keep getting an error code while trying to import a cd to my itunes: Error occurred while converting the file. The disc you are attempting to use is full. removing files and emptying the recycle bin will free up additional space.  What does this mean?

    I keep getting this error code while trying to import a cd to my itunes: "Error occurred while converting the file. The disc you are attempting to use is full. removing files and emptying the recycle bin will free up additional space."  What does this mean?

    Well it probably means exactly what it says... How much free space is there on your hard drive where the iTunes Media folder resides? I believe there is also an obscure bug that can occur when software doesn't read the true value of the free space properly, and the workaround is, perversely, to duplicate some content so that with less actual free space the software in question perceives it as more. I've no idea if iTunes is affected by such a bug.
    tt2

  • When I synch a file "best photos" via iTunes to my iPhone I get two identical files - "best photos" and Photo library.  I don't know why

    When I synch a file "best photos" via iTunes to my iPhone I get two identical files - "best photos" and Photo library.  I don't know why

    All photos transferred from your computer via the iTunes sync process are stored in the iPhone's Photo Library.
    When transferring multiple albums or a single album, the photos in the albums below are not duplicated as in taking double the storage capacity for the photos. Photos in an album or albums below include a pointer to the original photos stored in the Photo Library.
    This way you can view the photos in an album only by selecting the album, or all photos in all albums by selecting Photo Library. Makes more sense when transferring multiple photo albums from your computer but the same applies when transferring a single album or folder of photos.
    The same applies to iTunes playlists. A song placed in a playlist is not duplicated.

  • My Photoshop Elements does not start any more. It gives response "Photoshop elements cannot start or continue because of missing file(s). Please reinstall." How do I get the installing file again (I bought it via internet the first time december 2013?)

    My Photoshop Elements does not start any more. It gives response "Photoshop elements cannot start or continue because of missing file(s). Please reinstall." How do I get the installing file again (I bought it from Adobe via internet the first time december 2013?)

    Did you download the Basic/Free version?
    I also thought the Trial period was as long as you needed!?
    What is your Warranty and Return Policy?
    You get to use VueScan for as long as you want before you buy it, so we recommend you test it before you buy it to make sure it meets your needs.
    All sales are final and there are no refunds.
    Isn't this a bit harsh? Naah I actually prefer to solve problems, and if I offer refunds, people give up too easily. If I can't solve your problem after you send a few Problem Reports (see above), I'm happy to give a refund.
    http://www.hamrick.com/sup.html#q

  • HT204053 I have 4 iphones on the same Apple ID, but would like 4 different accounts and iCloud is this possible?

    I have 4 iphones on the same Apple ID, but would like 4 different accounts and iCloud is this possible?

    Create a new Apple ID for the one you want to change.

  • BAPI_INCOMINGINVOICE_CREATE,I use one PO no.but the PO_UNIT are different.

    hi experts:
        I use this bapi to create IncomingInvoice,there are two items in one PO,but the PO_UNIT are different,so it comes one erro.
    my question is ,this BAPI  can not create this kind of Invoice?
        thanks a lot.

    hi,
    di you use BAPI_TRANSACTION_COMMIT after the execution of BAPI_INCOMINGINVOICE_CREATE?
    regards,
    Peter

  • The file name of many songs are in my library but can't be heard or found, why?

    My itunes library has been off-line for a year or more and when i updated everything my song file names are there and some songs are audible but the majority of them are not and my computer says it can't find the song in my computer, what do i do?

    I am having the same problem. I spent three hours on the phone with Apple Reps last night. They first said that they would have to reinstate ? my permissions, which they did (I had also lost some music) but after an hour of downloads, I still had no tones. Spoke with another Rep and they said if I purchased the Tones on Istore they should show up. I had. They didn't. Then said that it could be the "older" music was no longer compatible and it MUST be purchased through Itunes Store to show up in Tones automatically. So...I bought almost $20 of Tones last night after I hung up, and NONE Of them show up in my Tones folder. I have tried everything. I cannot move them by drag and drop.
    This has been an ongoing problem for me for over a year, and so far, I cannot get any help.
    I was asked if it was possible if I had different Libraries. I told them I don't know, since I have used Itunes since 2009 (and like the old version much better) and I have never changed my Itunes login or password. I have however, had different computers.  I hope someone can help with this issue.

  • HP 4500 printing file name but not the context

    I have an hp 4500 connected to my router via an rj45 and have a laptop connected via wireless to my router. When I print a document from word it prints the file name and not the context.
    I have also tried to print an image but the same happen the file name got printed.  
    can any one help how i print the context on the file and not the name?
    is it due to my BT router?

    BT routers don't play well with HP printers, sorry.
    However, before we blame the BT, re-install the HP software from the "Support & Drivers" link at the top of this page.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • CS6 Links Window Shows jpeg file name but not tiff or psd file name

    So I have a question, I noticed that in CS5 and CS6 that when i place a jpeg file in Illustrator, the file name does appear in the links window, but when i place a tiff or a psd file there is no file name in the links window, this drives me nuts.  Is there a way to see the files name of placed psd and tiffs in the links window?

    Here's my thoughts...
    1. You are a bit confused and I wonder how you can determine a file is a PSD or a TIF by looking at it?  Not all print drivers can recognize PSD's, but can recognize TIF ( this means almost all output devices can interpret TIF's no problem ).  That said, PSD's can manage layers better than TIF's which add to file size each layer you include in the TIF.
    2. Never say never.  This all depends on the file's use.  Layered TIFs can add complexity in which a print driver can or cannot deal with.  As you work on an image, you may want to merge layers for whatever reason(s) and you always have the option to flatten whenever you feel like it.  However, It is also a good idea to dupe the file as you move along.  That means you always have a layered version to fall back on should you need to edit later on.  I also Place transparent PSDs in Illustrator files with no problems.  But, I save as EPS in Illustrator and when I do that, then the file is automatically flattened.  This is perhaps what the internet was talking about.
    3.  Yes, see number 2 above.  There's no such thing as automatic flattening of TIFFs.  Again, this all depends on the printer and whether or not it can print while retaining original layers.  Some do, some don't.  Most of the time, I edit in PSD with layers intact.  Then, when I prep the file for printing, I will save a copy as a flattened TIFF so the file streamlines through the RIP and Print process.
    4.  Makes no difference.  Use 'em if you've got 'em.
    Try to get some good resource material at a library or college bookstore or barnes & noble.  Also, get Adobe's Print Publishing Guide.  This is a good reference guide.
    Message was edited by: John Danek

Maybe you are looking for

  • Create Incident via CRM_UI, non-SAP components depending of sold-to-party

    Hello! We are using CRM_UI on Solman 7.1 ( SPS 10 ) to create Incidents. On the 3'rd step there is option to select SAP Components or non-SAP Components if defined. We are using a lot of non-SAP components. Is it possible to prevent users to choose a

  • Problem with messages and calls

    Problem with my iphone is that the messages are sent and received very late, it hangs while sending, when delete a message it takes time to open messages firstly... messages in the thread disappear and such abnormalities. and in Calls, i receive noti

  • Syncing iPod - please help

    When syncing my iPod I get the following message ..... Songs on the iPod "User's iPod" cannot be synced because all of the playlistst selected for syncing no longer exist. I've reset my iPod & reinstalled iTunes, but I still get the message. I guess

  • FCP Project sharing

    Hi, I've got two edit bays with two editor's that work on the same project at different stages from their respective machines. I'm trying to come up with a way to manage this, from both a network standpoint ie. all media on the same drive, file permi

  • Line in suddenly not working

    Hi there, I'm running an early 08 13" Macbook, I've always used my guitar into the line in to record ideas, using the Garageband amp models. Suddenly this doesn't work, I bought a new adapter and still nothing. Not even a hint of signal. If I'm in th