How to present OSSSearchResults from displaying duplicates ?

Hi
I'm baking my noodle over a problem with Search in SharePoint 2010 :
OSSSearchResults.aspx displays duplicate results in every single item in the search result e.g.
/list/item1
/list/item3
/list/item1
/list/item2
/list/item2
/list/item3
It's the first time I have ever come across this problem regarding search.
Have even reset the search index.
Problem seams to occur in OSSSearchResults.aspx and not in Results.aspx
Any ideas?

Hi 
<div class="srch-sitesearchmaintop">
<SearchWC:CoreResultsWebPart runat="server" ShowActionLinks=false ChromeType="None" RemoveDuplicates="false"/>
</div>this is not working in MOSS 2007.I have checked this.Can you please suggest on the same.

Similar Messages

  • How to prevent LOV from displaying duplicates

    Hi all. I'm using JDev 10.1.3. I have a af:selectOneChoice component which is used to set search criteria. There are a few records with duplicate values. Is there a way for me to prevent the LOV from displaying duplicate values? thanks in advance.
    <af:selectOneChoice
         value="#{bindings.UserAckAnnualBalancesView1EdcDescription.inputValue}"
            label="EDC Description"
            valueChangeListener="#{backingExecuteBtn.alterEdcDescSearchVal}">
            <f:selectItems value="#{bindings.UserAckAnnualBalancesView1EdcDescription.items}"/>
    </af:selectOneChoice>

    John. I assume that you are suggesting that I do a SELECT DISTINCT. If so, then no I cannot change the underlying query. I want all the records, what I am actually looking for is a way to filter the items in the LOV.

  • How to present results from a sql-query in java

    Hi - I'm having problems finding out how to present data from a database-query in a nice looking way in a JFrame. Want to present them similar to the way they are presented in the database. Is there an easy way doing this?

    Tried to use a JTable, but it's difficult when data in the table should be able to change all the time, i.e the number of rows. What is a Html-table? Can i use it in an application?

  • How to hide elements from displaying

    Hi
    I have a code
    <td><b><jbo:RenderValue datasource="dsProducts" dataitem="ProductName"/><sup><%=symbol%></sup></b><br/.
    But I want to supress it from displaying.How can I do that?
    Thanks in advance.

    Hi
    I have a code
    <td><b><jbo:RenderValue datasource="dsProducts" dataitem="ProductName"/><sup><%=symbol%></sup></b><br/.
    But I want to supress it from displaying.How can I do that?
    Thanks in advance.

  • MSS - How to remove retirees from displaying in MSS

    Hello,
    Does anyone know the best approach to exclude retirees (PA000.STAT2 = 2) from displaying in MSS?  We currently keep retirees in the org unit they retired from using creating a clone of their current position number to a new position number that starts with 991 or 993.  Terminated employees are put in position 99999999 and since there is OM relationships, those do not show up.
    Thank you,
    Keith Pieritz

    ya you can   make the settings in view T77S0 for only active employees keep as 3 u can achive it
    go to sm30 v_t77s0 create new entries enter values as :-
    a) Access the V_T77S0 view.
    b) Choose New Entries.
    c) In the Group field (group name), enter ESS.
    d) In the Sem. Abbr. field (semantic abbreviation) enter STAT2 .
    e) In the Value Abbr. field (value of semantic abbreviation), restrict the number of employees covered by the search by entering the relevant employment status for the search.
    save it  ....and once chk in portal after reloggin in

  • How to stop header from displaying when hovering over mail photos

    Hi
    This is an annoying behaviour to say the least. In MacMail when I move my cursor over an imbedded photo in a message the full header for the photo that is a link shows up almost blocking the photo. I can understand that the cursor would turn into a hand but there must be a way to stop the full address of the photo link? from displaying.
    Anyone?

    E. Michael Brandt wrote:
    Screen readers whould still read the alt attribute despite the presence of a title attribute.  In fact most apparently do not read the Title on an image:
    http://www.paciellogroup.com/resources/articles/WE05/forms.html
    As always some Screen Reader users can reconfigure the software:
    http://www.isolani.co.uk/blog/access/ConfiguringLinksInScreenReaders
    So in general I think you are safe doing this, but perhaps others can weigh in here.
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia
    Thanks very much,
    I saw several scripts where Javascript were used.
    But your solution is very simple and it works perfectly in IE7, don't know if it works in IE 8.
    Thanks again,
    Patrick

  • How to present pics from SAP folder?

    Hi,
    I would like to present a pic that is on the SAP folder (visible via AL11).
    I want to use logical filename to get the path to that gif.
    How can I present this pic on the screen?
    Thanks,
    Itay

    hi itay,
    you can use webdynpro IMAGE ui element. Bind the Source Property of the image UI element to the URL for this image. Check the below code on how to get IMAGE source URL in HR
    DATA: it_toav0 TYPE TABLE OF toav0,
            wa_toav0 TYPE toav0,
            p_exists TYPE c.
      DATA: ex_length   TYPE int4,
            ex_document TYPE TABLE OF tbl1024,
            ex_message  TYPE bapiret2,
            img         TYPE xstring,
            url         TYPE string,
            pernr       TYPE persno VALUE `1006786`.
      DATA: cached_response TYPE REF TO if_http_response,
            guid TYPE guid_32.
    * check employee image
      CALL FUNCTION 'HR_IMAGE_EXISTS'
        EXPORTING
          p_pernr        = pernr
          p_tclas        = 'A'
        IMPORTING
          p_exists       = p_exists
          p_connect_info = wa_toav0.
      IF p_exists = 1.
    *   get image data
        CALL FUNCTION 'ALINK_RFC_TABLE_GET'
          EXPORTING
            im_docid    = wa_toav0-arc_doc_id
            im_crepid   = wa_toav0-archiv_id
          IMPORTING
            ex_length   = ex_length
            ex_message  = ex_message
          TABLES
            ex_document = ex_document.
    *   convert to xstring
        CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
          EXPORTING
            input_length = ex_length
          IMPORTING
            buffer       = img
          TABLES
            binary_tab   = ex_document.
        CREATE OBJECT cached_response
          TYPE
            cl_http_response
          EXPORTING
            add_c_msg        = 1.
    *   set image to mime
        cached_response->set_data( img ).
        cached_response->set_header_field(
                         name  = if_http_header_fields=>content_type
                         value = 'image/pjpeg'  ).
        cached_response->set_status( code = 200 reason = 'OK' ).
        cached_response->server_cache_expire_rel( expires_rel = 180 ).
        CALL FUNCTION 'GUID_CREATE'
          IMPORTING
            ev_guid_32 = guid.
        cl_wd_utilities=>construct_wd_url(
                         EXPORTING application_name = 'Z_JR05'
                         IMPORTING out_local_url    = url     ).
        CONCATENATE url '/' guid sy-uzeit INTO url.
        cl_http_server=>server_cache_upload(
                        url      = url
                        response = cached_response ).
    *   set photo
        DATA:
         node_photo           TYPE REF TO if_wd_context_node,
         elem_photo           TYPE REF To if_wd_context_element,
         stru_photo           TYPE wd_this->element_photo.
        node_photo = wd_context->get_child_node(
                    name = wd_this->wdctx_photo ).
        elem_photo = node_photo->get_element(  ).
        elem_photo->set_attribute(
          EXPORTING
            name =  `PHOTO`
            value = url ).
      ENDIF.
    Also check this excerpt from Thomas Jung for previous Thread on same issue
    SE78 is the old graphics store for SAPScript. Not the best place to store images now because of the limited support for graphic types. Usually you store as Bitmaps there, making those images highly inefficient for usage on the web. Unless you have thousands of images you need to use, I would suggest downloading them, converting their format and storing them in the MIME repository. If you absolutely must access those images for some reason, look at the function modules in group STXBITMAPS - function module SAPSCRIPT_GET_GRAPHIC_BDS or SAPSCRIPT_BITMAP_GET depending upon which of the two formats/folders where used in SE78.
    greetings
    Prashant

  • How to Restrict Subscriber from displaying his own Stream?

    How to pass opponent UserID to Subscriber ???
    private function displayExistingStreams():void   
    {     var publishers:Object = _streamManager.getStreamsOfType(StreamManager.CAMERA_STREAM);
        //status_txt.text += "displayExistingStreams";
        for (var publisherID:String in publishers) {
            if (publisherID !=_userManager.myUserID) {   
                setUpSubscriber(publisherID);       
    protected function setUpSubscriber(p_publisherID:String):void {
        currentSubscriber = new WebcamSubscriber();
        currentSubscriber.displayUserBars=true;
        currentSubscriber.connectSession = cSession ;
        currentSubscriber.subscribe();
         // publisherIDs  used for restricting the list of publishers     that this subscriber should display videos for.
        currentSubscriber.publisherIDs = [p_publisherID];

    Hi ,
    You need to loop over userIDs from userManager.userCollection and get all userIDs and set webcamSubscriber.publisherIDs to all IDs except your own. And you  need to update this everytime an user enters or leaves the room ( by listening to UserEvent.USER_CREATE and UserEvent.USER_REMOVE from UserManager, if you want to dynamically maintain this publisherIDs list)
    I have replied this in other forum messages earlier.
    Hope this helps
    Thanks
    Hironmay Basu

  • How to stop IE from displaying alt text as tool tip when mouse over image.

    I have random images being [B]echo[/B] by a PHP script on a page.
    [CODE]<img src="<?php echo $randomImage; ?>" alt="This is alt text" />[/CODE]
    The problem is every time you scroll over the image, IE spits out the alt text.
    I understand the alt text are meant for accessibility.
    So how can I stop this IE behavior with out compromising accessibilty?
    Thanks everyone.
    Patrick

    E. Michael Brandt wrote:
    Screen readers whould still read the alt attribute despite the presence of a title attribute.  In fact most apparently do not read the Title on an image:
    http://www.paciellogroup.com/resources/articles/WE05/forms.html
    As always some Screen Reader users can reconfigure the software:
    http://www.isolani.co.uk/blog/access/ConfiguringLinksInScreenReaders
    So in general I think you are safe doing this, but perhaps others can weigh in here.
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia
    Thanks very much,
    I saw several scripts where Javascript were used.
    But your solution is very simple and it works perfectly in IE7, don't know if it works in IE 8.
    Thanks again,
    Patrick

  • Safari w/ Yosemite: How to Stop Webpages from Displaying in Mobile Friendly Format?

    My Mac is displaying webpages as if I were visiting on my iPhone 6. Is there a way to direct the browser to display the standard site?
    This limits my accessibility quite a bit and the only thing I've found to solve the problem so far is erasing the history. Not a BIG deal, but I would like to find another solution if possible.
    MY STATS:
    MacBook Pro (Retina, 13-inch, Mid 2014)
    OS X Yosemite (10.10.1)
    Safari 8.0.2 (10600.2.5)
    iPhone 6
    iOS 8.1.2 (12B440)
    I use my AppleID to connect both devices and also use Continuity between them.
    Thanks in advance for your help!
    - Tison

        Safari > Preference > Advanced
        Checkmark the box for "Show Develop menu in menu bar".
        Develop menu will appear in the Safari menu bar.
        Develop > User Agent > Safari 8.0.2  or Other.....

  • How to present data from jsp?

    <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
    <%@ taglib uri="/WEB-INF/struts-template.tld" prefix="template" %>
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ page contentType="text/html; charset=Shift_JIS" %>
    <html:html>
    <head>
    <title>
    index
    </title>
    </head>
    <body>
    <h1>JBuilder Generated Struts JSP for ActionForm com.detail.actionform.IndexActionForm</h1>
    <p>
    <html:form action="/indexAction.do" method="POST">
    <DIV align="center" style="overflow-x:hidden;OVERFLOW-Y:scroll;width:460;height:350">
    <TABLE border="1" width="100%">
    rem
    this iterate cannt show any data for me.
    But i found that Bulliten and dataArrayList they all have data.
    I dont know where have a problem?
    please show me.
    <logic:present name="loginActionForm" property="dataArrayList">
    <logic:iterate id="Bulliten" name="loginActionForm" property="dataArrayList" scope="session" offset="0" length="1000">
    <TR>
         <TD width="10%">123<bean:write name="Bulliten" property="bulcode" filter="true" /> </TD>
    </TR>
    </logic:iterate>
    </logic:present>
    </TABLE>
    </DIV>
    <html:submit property="submit" value="Submit"/><br>
    <html:reset value ="Reset"/>
    </html:form>
    </body>
    </html:html>

    this is web view source :
    <html lang="ja">
    <head>
    <title>
    index
    </title>
    </head>
    <body>
    <h1>JBuilder Generated Struts JSP for ActionForm com.detail.actionform.IndexActionForm</h1>
    <p>
    <form name="indexActionForm" method="POST" action="/struts/indexAction.do">
    <DIV align="center" style="overflow-x:hidden;OVERFLOW-Y:scroll;width:460;height:350">
    <TABLE border="1" width="100%">
    </TABLE>
    </DIV>
    <br>
    <br>
    <br>
    <br>
    <br>
    <input type="submit" name="submit" value="Submit"><br>
    <input type="reset" name="reset" value="Reset">
    </form>
    </body>
    </html>

  • Prevent iViews from displaying their own scrollbars

    Hi,
    does anybody know how to allow vertical scrolling in pages exclusively by using the browser's vertical scrollbar (e.g. as it is realized in the SDN portal) respectively how to prevent iViews from displaying their own scrollbars?
    Regards,
    Christoph

    Hi Christoph,
    to turn off scrolling has certainly something to do with setting the height and height-type of an iView. But as discussed in this thread Automatic Height of iView/Page & Footer in Framework page
    there is probably a bug in the EP. I have tried some combinations and had no luck either. In the forum thread is some javascript proposed. I haven't had time to check it out. But maybe it is some help to your problem.
    regards,
    Ulli

  • HT1386 HOW DO YOU DISPLAY DUPLICATES IN PLAYLISTS?

    How do you display duplicates on the playlist with the new itunes format?

    Note that, as with the iTunes feature, this lists make no distinction between "originals" and "dupes", you have to decide which is which.
    There is also my DeDuper script for automatically removing duplicates copies but keeping one remaining copy of each set. This can preserve ratings, play counts, playlist membership, etc. which are lost in a manual clean up. Please take note of the warning to backup your library before deduping. See this thread for background on deduping and the script.
    If you want to manually remove duplicate tracks use shift-delete to remove selected tracks from the library as well as the playlist. Keep one of each repeated group of files and don't send the others to the recycle bin unless you are sure that there are multiple files on the disc as opposed to multiple entries to the same file. Same advice to backup applies.
    tt2

  • HT2905 How do I display duplicates on the newest version of itunes?.help says its under file, but it is no longer there!

    How do I display duplicates on the newest version of itunes?.help says its under file, but it is no longer there!

    The show duplicates/show exact duplicates features have been left out of iTunes 11.0. Rumor suggests they will be restored in the next build. In the meantime I have written two Windows scripts to make playlists of Duplicates and Exact Duplicates, either from a selection of tracks or the entire library. Note that, as with the iTunes feature, this list makes no distinction between "originals" and "dupes", you have to decide which is which.
    There is also my DeDuper script for automatically removing duplicate copies but keeping one remaining copy of each set. This can preserve ratings, play counts, playlist membership, etc. which are lost in a manual clean up. Please take note of the warning to backup your library before deduping. See this thread for background on deduping and the script.
    If you want to manually remove duplicate tracks use shift-delete to remove selected tracks from the library as well as the playlist. Keep one of each repeated group of files and don't send the others to the recycle bin unless you are sure that there are multiple files on the disc as opposed to multiple entries to the same file. Same advice to backup applies.
    tt2

  • How do I effectively remove multiple duplicate contacts from S5?

    How do I effectively remove multiple duplicate contacts from Samsung S5? Genius who sold me the phone duplicated ALL of my existing contacts.

        Thank you for reaching back out to us, if your contacts are backed up by GMail, if you log in to your account on a PC, they should appear online under the Contacts tab. Try this also, if you go to Contacts>Settings icon(three vertical dots button) Settings>Contacts to Display> What options are selected? This screen will help you pick and choose what contacts list to display.
    NicandroN_VZW
    Follow us on twitter @VZWSupport

Maybe you are looking for

  • Help required in order to produce a bar chart

    Hi, I want to create a bar chart. The first column I have is a label - the year. The second column is a frequency. If I highlight both columns, I get both variables plotted as values against the same y-axis. If I highlight just the frequency, I get t

  • Shifting of  consumer becoming slower with time

    Oracle database 8i OS windows 2000 server I have one procedure for Shifting of consumers from one electric pole to another which incluedes updation and deletion at one go and no commit after each migration but commit at last. After execution of proce

  • Idoc sent in green status, but no trace

    Hi experts, we send idoc via we19 to XI, but we have absolutely NO TRACE of the message, even though the statuts of the sent idoc is green id bd87. We checked everything: idx2 we20 we21 bd64 sm59 but everything is fine do you have by any chance any i

  • CUSTOM library not getting picked up

    We have our custom business code written in HR_ADMIN.pll and it will be called through CUSTOM.pll for few forms ( like people, Assignment, Element Entry forms) In Our CLONE instance after every weekend outage for backup, we get error opening people f

  • MPLS support GEC on 7600 with SUP-720-3BXL ?

    Hi all Could someone let me know does 7600 with SUP-720-3BXL support full MPLS, MPLS-TE, QoS, ... on Gigabit Ethernet channel interface ? Which port interface (LAN/WAN, ...) does 7600/SUP-720-3BXL support full MPLS features ? And does 10GBASE XENPAR