Combining boost and bury with dgidx sort parameters

I have setup productprice as dgidx sort parameter so as to show the product listing from lowest to highest. But, when I try to boost some record to the top, the record shows up at the first but the order thereafter is random. I want the boosted records to show first followed the other records in sorted order. I tried the same thing with burying the records and the sorting order is lost. Is there a way to boost and bury records and still continue to keep the dgidx sort index for the records displayed between the boost and buried records?
Thank you.

I used relevance ranking with static module and sort on the same field with in the template. This enabled the sort parameter and relevance ranking parameter to flow through from the workbench along with the boost and bury data. Finally, I got to the combined list which had boosted and buried data along with the sorted data in the middle.
<Property name="navigation_records">
               <NavigationRecords xmlns="http://endeca.com/schema/content-tags/2008">
                    <RelevanceRanking>static(productRank)</RelevanceRanking>
               </NavigationRecords>
          </Property>     
          <Property name="navigation_records">
               <BoostBuryResultsProcessor     xmlns="http://endeca.com/schema/content/xtags/2010" />
          </Property>
<NavigationRecordsEditor propertyName="navigation_records" label="Record list">
                    <RelevanceRankingChoices label="Relevance ranking">
                         <RelevanceRankingChoice label="By Product Rank" relevanceRanking="static(productRank)" />
                         <RelevanceRankingChoice label="By Price" relevanceRanking="static(productPrice)" />
                    </RelevanceRankingChoices>
               </NavigationRecordsEditor>
               <editors:RecordStratificationEditor
                    propertyName="boostStrata" buryProperty="buryStrata" label="Customize Results List" />

Similar Messages

  • "Combine" New Apple ID with old one?

    As a fan of Apple and their products i'd thought, that i have to sign up on the Apple Support Communities, so yeah, i did it and .. "here i 'am". As i am German, i have to say sorry, if i use bad English. Complaints please to my former English teacher ^^
    Just let me say at this moment "A Big Hello" to you!
    My first discussion is thought to be a question: Can i "combine" my new Apple ID with my old one?
    > Till recently, the Apple ID i used was the one of my dad (so his eMail-adress of course). Now i've created my own Apple ID with my own eMail-adress. It would be great, if i could "transfer" the purchases, i've done with the former Apple ID (my dad's one) to my Apple ID. So, i'd have a better survey over all my purchases too, because i don't have to think "What apps have i bought with the Apple ID of my dad, which one's with my own Apple ID" and so on..
    Is there a chance to do this?
    Oh, and while i talk about "combine": is is possible, to combine "Purchases" and "Purchases with iPhone" in iTunes? I mean, that ALL purchases (the ones i've done via iPhone too) are listed under "Purchases" and the "Purchases with iPhone" could be shown off?

    Haha! Thanks.
    Aw, really? I was actually thinking about your discussion question because I was wanting to merge my new iCloud account into my same old iTunes account so I wouldn't have to deal with two separate ones...
    Excellent! That'd be very great! Let's hope that comes through. I'll be keeping my eye out for that one.
    Haha! Is that true? I feel stupid because I speak English. Since I don't know any other languages fully... So I feel like anyone could understand me if I were in a different country without challenge. Which is good if I want to get my point across, but I just feel like it'd be nice to speak the natural language, ya know?

  • Use two streams to manager client video/audio,Can i combine streams and record it with server AS API

    Use two streams to manager client video/audio,Can i combine streams and record it with server AS API
    I tried Stream.play()
    var s=Stream.get("combine");
    s.play("video");
    s.play("audio",null,null,false);
    s.record("append");
    it's don't work!!

    Thanks, that's what I had thought. Our domain.com zone is sourced internally and replicated to our advertisers for external users, so there's no way to change the result for internal vs external users.
    This is a rudimentary question that I should already know but I sort of inherited this after it was built: Can I have users sign in with their email address ([email protected]) but under the hood, their SIP address is [email protected]? This would let users
    sign in with an address they expect, but it would take advantage of the the local lyncdiscoverinternal record.
    Thanks,
    Matt

  • Need to delete the old page number from a combined file and replace it with the new number. is there a way for me to do that using JavaScipt

    is there a way of using JS to delete the old page number (1,3,32,78) on a combined PDF and inset it with a new page numbers (1,2,3,4) Thank you

    Depends. If the page numbers can be located by their location on the page then a script can be written to redact that area, and then add new page numbers in their place (or somewhere else).

  • I've found no way to sort.  For example, if I type the group "Rush" into the search bar, I get a list of songs recorded by rush and literally thousands of other songs and artists with the word rush in them. There is; however, no way to sort the results.

    I've found no way to sort search results in itunes.  For example, if I type the group "Rush" into the search bar, I get a list of songs recorded by rush and literally thousands of other songs and artists with the word rush in them. There is; however, no way to sort the results. 

    In the Search box click on the black Arrow and UNTICK the Search Entire Library.
    Then the Search results in Songs view will be displayed in the main Grid and you can sort them by clicking on the column headers.
    You can also turn on the column browser which can help with filtering

  • Problem sorting list with virtual layout = false (and also with true)

    Hi,
    I've a problem sorting a list... or better... I've a problem showing the sorted list ;-)
    I've a list of xml item. The list is shown with an item renderer.
    my needs: a button to refresh data and a button to sort data.
    useVirtualLayout = false
    -> refresh works correctly, sort does not affect the view (even if the list is sorted correctly when printed with trace)
    useVirtualLayout = true
    -> sort works correctly, refresh reverse the list each time I press it (even if the list remain the same when printed with trace)
    does any one have an idea?
    thank you!!
    MXML
    <s:List dataProvider="{xmlListCollection}" width="100%" itemRenderer="myRenderer" minHeight="0" id="test" useVirtualLayout="false" >
    <s:layout>
      <s:VerticalLayout clipAndEnableScrolling="true"/>
    </s:layout>
    </s:List>
    XML example
    <unit sortField1="First Floor" sortField2="7">
      <employee>
        <id>3040684</id>
        <name>PIFFARETTI Vasco</name>
        <birthdate>20.05.1983</birthdate>
        <beginDate>2012-02-25 08:55:00</beginDate>
        <endDate>9999-12-31 00:00:00</endDate>
        <annotation/>
      </employee>
    </unit>

    You can tell when the scroll position has changed by handling the propertyChange event coming from the DataGroup:
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   creationComplete="list1.dataGroup.addEventListener('propertyChange', handle)">
        <fx:Script>
            <![CDATA[
                import mx.events.PropertyChangeEvent;
                private function handle(e:PropertyChangeEvent):void {
                    if (e.property == 'verticalScrollPosition'){
                        trace('vsp changed');               
                    if (e.property == 'horizontalScrollPosition'){
                        trace('hsp changed');               
            ]]>
        </fx:Script>
        <s:List id="list1" width="100" height="50">
            <s:layout>
                <s:VerticalLayout />
            </s:layout>
            <s:dataProvider>
                <s:ArrayList>
                    <fx:String>0</fx:String>
                    <fx:String>1</fx:String>
                    <fx:String>2</fx:String>
                    <fx:String>3</fx:String>
                    <fx:String>4</fx:String>
                    <fx:String>5</fx:String>
                    <fx:String>6</fx:String>
                    <fx:String>7</fx:String>
                </s:ArrayList>
            </s:dataProvider>
        </s:List>
    </s:Application>
    You might also want to read and consider voting for http://bugs.adobe.com/jira/browse/SDK-21357

  • I loaded my ipad photos from camera and all the pictures sorted by date.  Next, I did a sync with my computer and the photos were all reorganized into IMPRT folders an out of date sequence.  Any idea how to put the photos back into date files?

    I loaded my ipad photos from camera and all the pictures sorted by date.  I later sync my ipad with my computer and the photos were all reorganized into IMPRT folders an out of date sequence.  Any idea how to put the photos back into date files other than reloading all of them from camera?

    What version of iPhoto?
    Select one and rotate it. Then rotate it back. Does that make it appear? 
    A much better work flow is the keep the photos after importing.  Check the success the import, wait for at least one successful backup cycle then use you camera's format command to reformat the card
    LN

  • Where clause with a combination of And and Or statements - Basic question

    Hi,
    I have a where clause with a combination of And and Or statements... May I know which one would run first
    Here is the sample
    WHERE SITE_NAME = 'Q' AND ET_NAME IN ('12', '15') AND TEST_DATE > DATE OR SITE_NAME = 'E' AND ET_NAME IN ('19', '20')
    can you please explain how this combination works
    Thanks in advance

    Hi,
    This reminds me of a great story. It's so good, it probably didn't really happen, but it's so good, I'm going to repeat it anyway.
    IBM once had an "executive apptitude test" that they would give to job applicants. There were some questions you might call general knowlege or trivia questions, and each question had a weight (for example, answering an unimportant queestion might score one point, an important question might be 5 points.) One of the questions was "What is the standard width of a mobile home?", and the weight of the question was -20: answering the question correctly did serious harm to your score. The reasoning was that the more you knew about mobile homes, the less likely you were to be their kind of executive.
    Now, as to your question, the correct answer is: I don't know. I don't want to know. Mixing ANDs and ORs without grouping them in parentheses is a really bad idea. Even if you get it right, it's going to confuse the next person who has to look at that code. Use parentheses to make sure the code is doing what you want it to do.
    If you really want to find out, it's documented in the SQL language manual. Look up "Operators, prcedence"
    http://docs.oracle.com/cd/E11882_01/server.112/e26088/operators001.htm#sthref815
    You can easily do an experiment, using scott.emp, or even dual, where
    WHERE  (x AND y)
    OR      zproduces different results from
    WHERE   x
    AND     (y OR z)

  • Multi-value parameters and strings with leading zeros

    I have invoice number as a multi-value parameter. Invoice is a string,10 (VBRP.VBELN) .
    Invoice number is my group. If I enter invoices 100 and 200 as parms, then I only get data for invoice #100 (the lowest value entered). But if I enter 100, 0000000100, 200, 0000000200 as parms, then I get data for both invoices. Is there a way to get around having to enter the invoice number in both formats. BTW, if I only enter 0000000100 and 0000000200 then I get no data.
    Selection criteria is (VBRP.VBELN) = ?invoiceno --- parms are defined as allow muliple values and allow discrete values.

    Oops, that's not gonna work with multi-value parameters.  How about:
    if IsNumeric((VBRP.VBELN)) then
      ToText(Val((VBRP.VBELN)), "0") in {?invoiceno}
    else
      (VBRP.VBELN) in {?invoiceno}
    end if
    BTW, the reason why your original formula didn't work was because the "=" should have been "in".  The above is needed only if the (VBRP.VBELN) field might contain leading zeroes.
    HTH,
    Carl

  • Is it possible to combine a address list with a Pages document and a data base in Numbers, the equivalent of "Mail Merge" using Microsoft?

    Is it possible to combine an address list with a Pages 5.1 document and a data base in Numbers 3.1, the equivelent of Microsoft "Mail Merge"?

    It is possible in Pages 09 and Numbers 09 but not in the versions you name.

  • HELP. 3 years ago I purchased cs3. I had troubles with registering the serial number and used my university's suite instead, and (stupidly) did not sort it out. I am now wanting to subscribe to the online creative cloud with my cs3 discount. Is there any

    HELP. 3 years ago I purchased cs3. I had troubles with registering the serial number and used my university's suite instead, and (stupidly) did not sort it out. I am now wanting to subscribe to the online creative cloud with my cs3 discount. Is there any way to find / prove that I had purchased cs3 and locate a serial number? On my Adobe account it does not show my purchase of cs3 (I am guessing because of the trouble with registering my serial number). I have moved house 3 times since the purchase and am unable to locate the packaging or disk. Is there any way to prove my purchase without any serial number or showing under my Adobe account? Please help! Thanks

    The CS3 discount offer is only for retail online product, it does not include education or volume license purchases. Refer to Terms and Conditions | Adobe
    To check whether you had retail CS3 purchase, we need proof of purchase as well as serial number, without which the issue can not be resolved.
    Regards
    Rajshree

  • Car kit with GPS booster AND FM transmitter???

    Does anyone know if there is a car kit that has both a GPS booster and a FM radio transmitter? Our cars don't have auxiliary audio inputs so we wouldn't be able to play itunes through the radio with the Tom Tom car kit. I'd really like a car kit that does everything (ie GPS booster, FM transmitter, handsfree calls, charger).
    Thanks
    Sorry... should have said I'm looking for something to work with iphone4
    Ta
    Message was edited by: jane101010

    Hi scoobyman,
    i have read an article about this matter on wom.com all about N78 , article was not cleared how can be done but it looks like a they are doing it ,,, when GSM is on and voice guided is active then transmitting the voice guided turn by turn to car radio with N78's FM transmitter , by the way the article writer is from South Africa , can you please do some investigations and I'll do the same so we might come up with some answer to see how can be done , looking forward to hear more in this matter, thanks
    The only thing necessary for the triumph of evil , is for good men to do nothing .

  • I will combine Win 8.1 and Mac system in Creative Cloud program. Is that possible in same license. Start the work in Mac and continue with Win 8.1 and do presentation on Ipad ???

    I will combine Win 8.1 and Mac system in Creative Cloud program. Is that possible in same license. Start the work in Mac and continue with Win 8.1 and do presentation on Ipad ???

    Cloud License allows 2 activations http://www.adobe.com/legal/licenses-terms.html
    -Install on a 2nd computer http://forums.adobe.com/thread/1452292?tstart=0
    -Windows or Mac does not matter... 2 on the same operating system, or 1 on each
    Check this link to see what is available for an ipad
    -http://www.adobe.com/products/catalog/mobile._sl_id-contentfilter_sl_catalog_sl_mobiledevi ces.html

  • Need Help with Array.sort and compare

    Hi
    I have a big problem, i try to make a java class, where i can open a file and add new words, and to sort them in a right order
    Ok everthing works fine, but i get a problem with lower and upper cases.
    So i need a comparator, i tried everything but i just dont understand it.
    How do i use this with Array.sort??
    I hope someone can help me

    Okay, you want to ignore case when sorting.
    There are two possibilities: Truly ignore case, so that any of the following are possible, and which one you'll actually get is undefined, and may vary depending on, say, which order the words are entered in the first place:
    English english German german
    english English german German
    English english german German
    english English German german
    The second possibility is that you do consider case, but it's of lower priority--it's only considered if the letters are the same. This allows only the first two orderings above.
    Either way, you need to write a comparator, and call an Arrays.sort method that takes both array and Comparator.
    The first situation is simpler. Just get an all upper or lower case copy of the strings, and then compare thosepublic int compare(Object o1, Object o2) {
        String s1 = ((String)o1).toUpper();
        String s2 = ((String)o1).toUpper();
        return s1.compareTo(s2);
    } You'll need to add your own null check if you need one.
    For the second way, your comparator will need to iterate over each pair of characters. If the characters are equal, ignoring case, then you compare them based on case. You pick whether upper is greater or less than lower.
    Of course, the need to do this assumes that such a method doesn't alrady exist. I don't know of one, but I haven't looked.

  • Cannot print watermark and Annotation with a combination of OS and application software you use printing is cancelled

    cannot print watermark and Annotation with a combination of OS and application software you use printing is cancelled

    Hello,
    This forum is for discussions and questions regarding profiles and Microsoft's recognition system on the MSDN and TechNet sites. It is not for products/technologies.
    As it's off-topic here, I am moving the question to the
    Where is the forum for... forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book: Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C40686F746D61696C2E636F6D'-split'(?&lt;=\G.{2})'|%{if($_){[char][int]&quot;0x$_&quot;}})

Maybe you are looking for

  • Wireless and wired mac pro isue

    I recently bought a mac book air, Im trying to use my mac_pro's optical drive, but my mac pro is not wireless, it is wired conected to a linksys router to get the internet, when Im trying to make virtual conection with the remote disk option, nothing

  • Startup Volume screen keeps on appearing - no keys pressed though

    I've had this problem since I've had my Mac mini (about a year now). Sometimes the startup volume screen appears despite not having any other Hard Drives connected apart from the boot drive (which is the internal Hard drive) and despite not pressing

  • EJBQL query problem in JPA

    I am developing an Enterprise application that uses JPA and toplink as the persistence provider. It uses MYSQL 5.1. The query used in the Entity class is : @NamedQueries({@NamedQuery(name = "AirtravelsDynamic.findAllEconomyFlights", query = "select N

  • Retriving a a deleted abap program

    A Custom ABAP program was accidentally deleted a few weeks ago and the transport made it to production and all systems.  Are there any options to get a copy of the program back from somewhere? anywhere? Message was edited by: Scott Hoelscher

  • MR11 Error Vendor 123456789 does not exist

    Hi Experts, While user performing the t-code MR11 (maintainGR/IR clearing) getting an error message Vendor 123456789 does not exist, I checked in the system the vendor is there in the system, and also i checked in the Table EKKO, V_CKMLGRIR_FR, EKBZ,