Filter a list and unique selection will be used to filter another list

Good afternoon,
I need help using a label (CRP-MFR), to filter a list that I can display in a scorecard.
The list will have all my data from the worksheet, first column being my unique id.
I would like to detect the label and use that label to filter my list to a sublist that will be displayed
in a scorecard. It seems simple but I'm having issues.
Please help!
Thanks
The basic flow is Markets -> unique items ->
I already filter the markets to select a unique market that gets populated into a label
I wish to use that label to go to a products list to select the unique products for that market

Hi,
Can you send me the source file.i can check it once.you can view my id in business card.
Thanks,
Ramana.

Similar Messages

  • What is .java.bak file in java and how it will be useful for us?

    what is .java.bak file in java and how it will be useful to us in javaProgramming?

    Maybe is generated by your IDE or by your text editor (Editplus ?)

  • What is Split valuation? why and where it will be useful?

    Dear Frndz,
    Kindly explain What is Split valuation? why and where it will be useful?
    Regards,
    SRini

    Hi,
    Split Valuation
    Use
    For certain materials, it is necessary to valuate the various stocks in a particular valuation area separately. Reasons for this include:
    Different origins of the material
    Different grades of quality for the material
    Different statuses for the material
    Differentiation between in-house production and external procurement
    Differentiation between different deliveries
    Features
    If a material is subject to split valuation, the material is managed as several partial stocks, each partial stock is valuated separately.
    Each transaction that is relevant for valuation, be it a goods receipt, goods issue, invoice receipt or physical inventory, is carried out at the level of the partial stock. When you process one of these transactions, you must always specify which partial stock is involved. This means that only the partial stock in question is affected by a change in value, the other partial stocks remain unaffected.
    Alongside the partial stocks, the total stock is also updated. The calculation of the value of the total stock results from the total of the stock values and stock quantities of the partial stocks.
    You define whether the material is subject to split valuation on the accounting view of the material master record. There are two fields for this:
    The valuation category specifies which criterion should be used as the basis for differentiating between the various partial stocks.
    The valuation type specifies an individual characteristic of a partial stock.
    Prerequisites
    The valuation category is defined in the master record of a material. It determines whether the material is subject to split valuation. The specified material type must also be maintained in the material master record.
    Activities
    To specify the valuation type of a material for which valuation types have been defined in the material master record, proceed as follows:
    Branch to the purchase order item detail screen.
    Enter a predefined valuation type in the field Val. type.
    Save the purchase order.
    For more details , pls go through the following link :
    [Split Valuation  |http://help.sap.com/erp2005_ehp_04/helpdata/EN/8a/d1de34e4cb2300e10000009b38f83b/frameset.htm]
    Hope this helps.
    Regards,
    Tejas
    Edited by: Tejas  Pujara on Dec 19, 2008 7:22 AM

  • HT204053 Changed Apple ID names and no Apps will not use those changes

    Hello
    I was cleaning up a bunch of old history and renamed 4 of 5 apple accounts cleaning up family chaos over the last years.  Now my Apps updates ask for old Apple IDs and will not use renamed ones for same accounts or old passwords.  Please help.
    Thanks

    I was cleaning up a bunch of old history and renamed 4 of 5 apple accounts cleaning up family chaos over the last years.
    Please explain what that means. What was it that you actually did? It sounds more like you created new Apple IDs or something. What process did you use to change these names? Where did you find the instructions?

  • TS1398 my phone when connected to wifi wont download apps and internet but will when using 3G

    my iphone wont download my apps or internet when using wifi but will with 3G

    If you do not use cellular data then you can't be charged for something you don't use. You could turn airplane mode on and then turn wifi back on when you have wifi available and you want to send pics if you are paranoid

  • Date selection will not print properly when using Microsoft Date and Time Picker Control 6.0 in Excel 2010

    I have created a field input worksheet in which the user identifies start and end dates for training sessions, using the Date and Time Picker Active X Control.  It works fine on-screen, but when the worksheets are printed, the dates that were selected
    using the date picker calendar print out in an unreadable, huge font.  The large font also appears in the print preview mode.  I've tried modifying various properties in design mode, but nothing that I have tried will correct the problem. 
    Any ideas?

    The DTPicker seems to have some bugs in it when used on a worksheet. I have overcome the above by setting the size properties to the same size as a cell and the Linked cell property to the
    cell under the DTPicker. (Even setting the Linked cell had problems with an error message referring to the Check box property to be set to true so I just set it to true and inserted the linked cell and set the checkbox property back to
    false.)
    Then the VBA code below that Hides the DTPicker after a date is selected and unhides the DTPicker when the linked cell with the date is selected. The code is for 2 DTPickers so you will need to edit to suit your requirements.
    Caveat: If the DTPicker is visible then you can't hide it by selecting the same date again. If this occurs then it is a multi step operation. First select another date and the DTPicker will hide, then click on another cell then back on the cell with
    the date to unhide the DTPicker and then select the correct date.
    Hope it helps and feel free to get back to me with any questions etc.
    Private Sub DTPicker1_Change()
        Me.DTPicker1.Visible = False
    End Sub
    Private Sub DTPicker2_Change()
        Me.DTPicker2.Visible = False
    End Sub
    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
        Select Case Target.Address
            Case "$E$5"     'This is the linked cell for DTPicker1
                Me.DTPicker1.Visible = True
            Case "$E$13"    'This is the linked cell for DTPicker2
                Me.DTPicker2.Visible = True
        End Select
    End Sub
    Regards, OssieMac

  • Detecting click ( single and double) on row (displayed using iterator)

    Hello All,
    I am using jdev 11.1.1.6
    I am displaying a list as below.
                                   <trh:tableLayout>
                                        <af:iterator value="#{pageFlowScope.Bean.List}" var="temp">
                                         <trh:rowLayout>
                                          <trh:cellFormat>
                                           <af:outputText value="#{temp.value1}"/>
                                          </trh:cellFormat>
                                          <trh:cellFormat>
                                           <af:outputText value="#{temp.value2}"/>
                                          </trh:cellFormat>
                                          <trh:cellFormat>
                                           <af:outputText value="#{temp.value3}"/>
                                          </trh:cellFormat>
                                          <trh:cellFormat>
                                           <af:outputText value="#{temp.value4}"/>
                                          </trh:cellFormat>
                                        </trh:rowLayout>
                                        </af:iterator>
                                      </trh:tableLayout>
    My requirement is, when user clicks on a row, that row should be detected in backend and those value will be used.
    My requirement is, On single click row should be detected(in backend/bean)
    On double click, the values is saved(in backend/bean).
    How can i detect single and double click on a particular row ?

    I have updated the code as below, single click and double click are getting detected on a row
        <af:resource type="javascript">
                function singleClick(){
                    alert("Single Click");
                function doubleClick(){
                    alert("Double Click");
        </af:resource>
                                   <trh:tableLayout>
                                        <af:iterator value="#{pageFlowScope.Bean.List}" var="temp" onclick="singleClick()" ondblclick="doubleClick()">
                                         <trh:rowLayout>
                                          <trh:cellFormat>
                                           <af:outputText value="#{temp.value1}"/>
                                          </trh:cellFormat>
                                          <trh:cellFormat>
                                           <af:outputText value="#{temp.value2}"/>
                                          </trh:cellFormat>
                                          <trh:cellFormat>
                                           <af:outputText value="#{temp.value3}"/>
                                          </trh:cellFormat>
                                          <trh:cellFormat>
                                           <af:outputText value="#{temp.value4}"/>
                                          </trh:cellFormat>
                                        </trh:rowLayout>
                                        </af:iterator>
                                      </trh:tableLayout>
    Now,
    suppose i have following values for some/any row,
    value1=20, value2="abc", value3=009, value4="Language" 
    How can i retrieve these values in java script (if in backing bean then very good)

  • I redeemed a giftcard in one of my accounts, and realized I wanted to redeem it in another. Is there a way I can transfer the money from one account to another, without being billed to my credit card?

    I redeemed a giftcard in one account and realized I wanted to use it in another. Is there a way I can transfer the money from one account to the other without billing my credit card?

    You can't transfer money between accounts.  You can, however, gift items by clicking the arrow to the right of the price, which will achieve the same ends.  It should work for everything except rentals.

  • How to select  random and unique number

    hi all
    suppose i have millions of rows in emp table
    i want to select group of empno
    group of records would be 10
    all records uniquely selected
    make sure all records are selected in any Group
    thanks

    BluShadow wrote:
    Solomon Yakobson wrote:
    3360 wrote:
    It is the definition of random that the each value generated has an equal chance of being generated again. A coin toss is random despite the result only having two values.Absolutely. Except one little thing. The above applies if we randomly pick from same set. Now OP asked to randomly select group of objects. This is same as you have a set of unique objects and you randomly pick one and put it in your pocket. Then you randomly pick another object and put it in your pocket. So you end up with a UNIQUE set of randomly picked objects in your pocket. Now DBMS_RANDOM allows to specify low & high value but it doesn't allow to provide something like "pick N values" or except list to mimick "put in your pocket" part. That is why we have to write something like I suggested to OP.
    SY.In that case it should just be an answer like...
    select * from tablename where rownum <= 10because the order is not guaranteed without an order by clause and therefore that's just as random as needed to meet the requirements. ;)hi BluShadow
    rownum surely give unique number of records but it will not A RANDOM....
    thanks

  • I have an iPhone 4 on IOS5. I signed up for itunes match. After everything uploaded to the cloud, my songs are messed up. I'll select a song and the title will show with the right art work but a different song will start playing.  Anyone have a solution?

    I have an iPhone 4 on IOS5. I signed up for itunes match. After everything uploaded to the cloud, my songs are messed up. I'll select a song and the title will show with the right art work but a different song will start playing.  Some songs won't play at all even though they do appear in the itunes store. The artwork almost always shows u blank until you turn it to landscape then it will appear. Anyone know what's going on?

    I have found that scrolling through the album list (past albums without art) triggers the progress wheel next to the wifi symbol. You can scroll quickly through the whole collection and then wait! Artwork will appear gradually...
    However, repeat visits to the Music App might initially show no artwork again, but it might spontaneously appear more quickly this time. The bad news is that the whole Music App is now sluggish as ****...

  • HT1600 I have Apple TV version 7.4.2 and we pressed on the remote the select button and the menu button at the same time to update our software.  The box shows white light, we can get the screen to select netflix but nothing will move and the box will not

    I have Apple TV version 7.4.2.  We read in a blog that in order to reset our Apple TV we should press the menu button and the select big button at the same time which we did.  Now when we attempt to turn on the apple tv box it with the remote we get a white light and sometimes we can get the menu screen but the remote will not let us move now will it allow us to turn the apple tv on or off.  If we just leave it alone, the white light eventually goes away.  I did unplug the apple tv and we removed the batteries and reinstalled them from the remote and that did not make any difference.  Please advise. 

    If your problem persists get yourself a micro USB cable (sold separately), you can restore your Apple TV from iTunes:
    Remove ALL cables from Apple TV. (if you don't you will not see Apple TV in the iTunes Source list)
    Connect the micro USB cable to the Apple TV and to your computer.
    Reconnect the power cable (only for Apple TV 3)
    Open iTunes.
    Select your Apple TV in the Devices list, and then click Restore.

  • How can I make a list and after selecting a value, avoid displaying it.

    Let's say I have a ListBox or a ListOfValues(in Forms), and I have as Data.
    "LEVEL 1"
    "LEVEL 2"
    "LEVEL 3"
    "LEVEL 4"
    and I select "LEVEL 2".
    next time I display the list, (been selected "LEVEL2"), it doesnt display it anymore (unless I clean it or select another value).

    I've search on google but I did not found any tutorial for this particular thing. I found instead this code : 
    on (press) {     startDrag ("", false);   
    this.swapDepths(_global.depth++);
    on (release, releaseOutside)
    stopDrag ();   
    this.swapDepths(_global.depth++);   
    if (this._x > 493.250000 && this._x < 636.050000 && this._y > 142.900000 && this._y < 271.350000)   
       this.removeMovieClip();   
        } // end if
    but I don't know how to make the _x/_y to work, better said I changed  the values but nothing happend, did I did something wrong ? The first _x/_y stands for the position? I've played with the range values but cant seem to make it happend.

  • When my iPod Touch is connected to my Mac, and I select Update to update the software of my iPod Touch, I get a message saying that my iTunes software is current, but it will not update my iPod Touch software.  Is there a bug in the iPod program?

    When my iPod Touch is connected to my Mac, and I select Update to update the software of my iPod Touch, I get a message saying that my iTunes software is current, but it will not update my iPod Touch software.  Is there a bug in the iPod program?

    If you have the first gen ipod touch as your information shows, then you would have to buy a software update:
    Purchasing iOS 3.1 Software Update for iPod touch (1st generation)

  • After upgrade my Iphone 4 to iso5, I can't add contact and I can't access the settings for mail,contacts and calender. The moment I select the setting for Mails, Contact and Calender it will jump back to home. Can someone advice what's wrong with it?

    After upgrade my Iphone 4 to iso5, I can't add contact and I can't access the settings for mail,contacts and calender. The moment I select the setting for Mails, Contact and Calender it will jump back to home. Can someone advice what's wrong with it?Problr

    Dear All
    i have done the same activity ( buy a new iphone 4 -> upgrade to ios5 - > configure email) with success-
    than when i start to move the contacts from old mobile to iphone (using the microsim) i receive the same crash
    in disgnosis e use i saw 2 dump with this title 'latestCrash-Preferences.plist and LatestCrash.plist. in each file the date is the same and i read:
    Exception Tyle: EXC_CRASH (SIGABRT)
    Exception code: 0x00000000, 0x00000000
    Chrashed Thread: 6
    in thread 6: name: Dispatch queue:
    com.apple.addressBookUI.ContactsSettingPlugin
    and thaan a lot of data.
    Have you any idea?
    thank in advance
    Fabio

  • I've gotten 60 or 70 messages that that my iCloud doesn't work and to select preferences.  The message says I will get an email to verify but I never get an email.  I've checked old email, blocked email, and have low filters on emails.  Any ideas?

    've gotten 60 or 70 messages that that my iCloud doesn't work and to select preferences.  The message says I will get an email to verify but I never get an email.  I've checked old email, blocked email, and have low filters on emails.  Any ideas?

    Hey CarolinQc,
    Thanks for the question. The symptoms you are experiencing can result from an Apple ID address that has been changed prior to signing out of all of the services. Before you change the email address associated with your Apple ID, you’ll want to sign out of all services to avoid this. As a fix, you can temporarily change your Apple ID back to the old address:
    iOS 7: If you're asked for the password to your previous Apple ID when signing out of iCloud
    http://support.apple.com/kb/TS5223
    Change your Apple ID temporarily
    If signing out and back in to iMessage or FaceTime didn't help, try these steps:
    1. Change your Apple ID to the Apple ID you used previously. You shouldn't need to verify the email address.
    2. Go to Settings > iCloud. Complete these steps only if the Find My [Device] setting is turned on:
              - Scroll down and tap Delete Account, then tap Delete to confirm.
              - Tap “Keep on My [Device]” or “Delete from My [Device].” In either case, your data remains in iCloud and will be updated on your device when you sign in to iCloud again.
              - Enter the password for your previous Apple ID.
    3. Change your Apple ID to the new email address that you want to use. You'll need to verify the email address.
    4. Return to Settings > iCloud and sign in with your new Apple ID.
    Additional Information:
    Apple ID: What to do after you change your Apple ID
    http://support.apple.com/kb/HT5796
    Thanks,
    Matt M.

Maybe you are looking for