How do I know what item has been selected in a select list?

I built a select list where the user selects one item from the list and then searches using the searchfield. I need to know what item has been selected in the select list so that I can do branching and branch the user to a particular page. Can someone tell me how I can accomplish this?
So if I want to search for Tea in the drinks category I would need to click on Drink in the select list and then type "Tea" and select search. After that I get redirected to a table called "Drinks" and there the search results will be displayed. please help!

I tried to mach expressions... I made a simple list(with redirection):
STATIC:Yes;Y,No;N and it displays fine. I then try to do branching where exp1=exp2 Where I tried to have the label "X" for E1 and "Y" for E2 and nothing happened. I tried to use the name of the list Xlist and it failed too. I tried Request=exp1 and didnt work either. I set the source for the list as static. I am not sure what I am doing wrong. When i tried !=exp nothing happened either... perhaps the values I am using are wrong? Pleas help me out.

Similar Messages

  • How do I know what Opatch has been installed on OBIEE 11.1.1.6.2?

    Hi,
    I started working with new client and someone does obiee upgrade to 11.1.1.6.2. now users got some issue and we identified that issue can be resolved if we apply a patch and to apply that patch it is saying please make sure you have installed pre requisite patch with some number. how do I know what Opatch has been installed on OBIEE 11.1.1.6.2?
    any command or file available?
    Edited by: JV123 on Feb 14, 2013 2:48 PM

    Check this
    http://www.cool-bi.com/CMDline/DeterminingCurrentPatchLevels.php
    If helps mark

  • HT201364 You need 4.93 GB of available space. I cannot download OS X Mavericks. I obtain the following answer: Remove items from your startup disk to increase available space. How do I know what items I should remove in order to make more space available?

    You need 4.93 GB of available space. I cannot download OS X Mavericks for I obtain the following answer: Remove items from your startup disk to increase available space. How do I know what items I should remove in order to make more space available? Thanks.

    You should never, EVER let a conputer hard drive get completely full, EVER!
    With Macs and OS X, you shouldn't let the hard drive get below 15 GBs or less of free data space.
    If it does, it's time for some hard drive housecleaning.
    Follow some of my tips for cleaning out, deleting and archiving data from your Mac's internal hard drive.
    Have you emptied your Mac's Trash icon in the Dock?
    If you use iPhoto, iPhoto has its own trash that needs to be emptied, also.
    If you store images in other locations other than iPhoto, then you will have to weed through these to determine what to archive and what to delete.
    If you use Apple Mail app, Apple Mail also has its own trash area that needs to be emptied, too!
    Delete any old or no longer needed emails and/or archive to disc, flash drives or external hard drive, older emails you want to save.
    Look through your other Mailboxes and other Mail categories to see If there is other mail you can archive and/or delete.
    Other things you can do to gain space.
    Once you have around 15 GBs regained, do a search, download and install OmniDisk Sweeper.
    This app will help you locate files that you can move/archive and/or delete from your system.
    STAY AWAY FROM DELETING ANY FILES FROM OS X SYSTEM FOLDER!
    Look through your Documents folder and delete any type of old useless type files like "Read Me" type files.
    Again, archive to disc, flash drives, ext. hard drives or delete any old documents you no longer use or immediately need.
    Look in your Applications folder, if you have applications you haven't used in a long time, if the app doesn't have a dedicated uninstaller, then you can simply drag it into the OS X Trash icon. IF the application has an uninstaller app, then use it to completely delete the app from your Mac.
    Download an app called OnyX for your version of OS X.
    When you install and launch it, let it do its initial automatic tests, then go to the cleaning and maintenance tabs and run the maintenance tabs that let OnyX clean out all web browser cache files, web browser histories, system cache files, delete old error log files.
    Typically, iTunes and iPhoto libraries are the biggest users of HD space.
    move these files/data off of your internal drive to the external hard drive and deleted off of the internal hard drive.
    If you have any other large folders of personal data or projects, these should be archived or moved, also, to the optical discs, flash drives or external hard drive and then either archived to disc and/or deleted off your internal hard drive.
    Good Luck!

  • How do I know which block has been changed in Master/Detail

    Hi,
    I have master detail blocks. How do I know which block has been changed?
    I used :SYSTEM.FORM_STATUS. It only gave me "Changed" or "Query". but didn't tell me which block has been changed in MASTER or DETAIL.

    I believe if :system.form_status != 'QUERY' you'll need to loop through through the blocks checking :system.block_status to see who changed. Of course you'd have to go_block() before checking the status.

  • JRadioButtons - how do i know which one has been clicked?!

    hey all,
    im working on a simple gui to implement a ticket office system. im a bit of a newbie to using GUIs and im fed up of trawling through the api's in search of answers and im on the home run... so here's my q...
    i have a gui class for doing a search for tickets. i have a controller in a seperate actionListener class for this gui. i have three radio buttons for searching for three different things and then there's a search jbutton to start the search.
    how do i know what radio button the user has selected when they click search? i need to be able to know this from the controller, not in the gui itself.
    thanks a mil!

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class TicketOffice_Demo extends JFrame {
        public TicketOffice_Demo() {
            initComponents();
        private void initComponents() {
            ticketsGroup = new ButtonGroup();
            toolbar = new JToolBar();
            startSearch = new JButton();
            typeA = new JRadioButton();
            typeB = new JRadioButton();
            typeC = new JRadioButton();
            scrollpane = new JScrollPane();
            textarea = new JTextArea();
            setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
            setTitle("Ticket Office Demo");
            toolbar.setFloatable(false);
            startSearch.setText("Start Search");
            startSearch.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent evt) {
                    startSearchActionPerformed(evt);
            toolbar.add(startSearch);
            ticketsGroup.add(typeA);
            typeA.setSelected(true);
            typeA.setText("\"A\" Tickets");
            typeA.addItemListener(new ItemListener() {
                public void itemStateChanged(ItemEvent evt) {
                    typeAItemStateChanged(evt);
            toolbar.add(typeA);
            ticketsGroup.add(typeB);
            typeB.setText("\"B\" Tickets");
            typeB.addItemListener(new ItemListener() {
                public void itemStateChanged(ItemEvent evt) {
                    typeAItemStateChanged(evt);
            toolbar.add(typeB);
            ticketsGroup.add(typeC);
            typeC.setText("\"C\" Tickets");
            typeC.addItemListener(new ItemListener() {
                public void itemStateChanged(ItemEvent evt) {
                    typeAItemStateChanged(evt);
            toolbar.add(typeC);
            getContentPane().add(toolbar, BorderLayout.NORTH);
            textarea.setBackground(new Color(255, 255, 204));
            textarea.setEditable(false);
            scrollpane.setViewportView(textarea);
            getContentPane().add(scrollpane, BorderLayout.CENTER);
            Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
            setBounds((screenSize.width-400)/2, (screenSize.height-300)/2, 400, 300);
        private void startSearchActionPerformed(ActionEvent evt) {
            Controller cont = new Controller(ticketType);
            textarea.append("Controller searches for ticket type '"+cont.getTicketType()+"'\n");
        private void typeAItemStateChanged(ItemEvent evt) {
            if(typeA.isSelected()){
                ticketType = "A";
            }else if(typeB.isSelected()){
                ticketType = "B";
            }else if(typeC.isSelected()){
                ticketType = "C";
        public static void main(String args[]) {
            new TicketOffice_Demo().setVisible(true);
        private JButton startSearch;
        private JRadioButton typeA;
        private JRadioButton typeB;
        private JRadioButton typeC;
        private JScrollPane scrollpane;
        private JTextArea textarea;
        private JToolBar toolbar;
        private ButtonGroup ticketsGroup;
        private String ticketType ="A";
    class Controller {
        Controller(String ticketType){
            this.ticketType = ticketType;
        public String getTicketType(){
            return ticketType;
        private String ticketType;
    }

  • HT1212 how will i know when ipad has been restored?

    I am trying to restore my ipad.  Itunes has finished downloading the update.  how will i know when the ipad has been restored?

    It has given me an error 3194 - this device is not eligible for the requested build.  What now?

  • How do i know if row has been updated?

    Hi
    Please can someone guide me on how I can determine if my update has been successful. I am currently using the method below but my data is being put into the table but the method rowUpdated() returns false when it should return true.
    rs.moveToInsertRow();
    rs.updateString("SL_Name", "Antek")
    rs.insertRow();
    System.out.println("Row updated " + rs.rowUpdated());
    Thanxs
    Antek

    I am using a primary key which is set by ms-sql server and it has the properties not-null auto incrementing. I was using the manual insert function before but then I realised the moveToInsertRow() method so I changed because of the added benefits to my program I can get. Before I was using the following code to see if a row was inserted see below. (I want something similar for the new way I insert data into table please)
    ======
    what i use to use before
    ======
    int numRows= myStatement.executeUpdate(sql);          
    System.out.println(numRows + " rows updated");
    if (numRows > 0)
    returnString = "success";
    Antek

  • How do I know which workflow has been activated for my SHC in SRM

    Hi Experts ,
    Can anyone tell me where to find which workflow has been activated to my Shopping cart in the SRM. so that it creates a PO in the backend
    To create a PO in the back end it should have a WF actiavted.
    do we can have only always one WF activated or can we have multiple WFs depending on the conditions for one scenario
    Please suggest me
    Regards
    Sairam.

    Cross-Application Basic Settings u2192 SAP Business Workflow u2192 Perform Task-Specific Cusomizing
    SAP u2192 SRM u2192 SRM-EBP u2192 SRM-EBP-WFL
           -   WS10000060 (Automatic approval)
             -   WS10000129 (One-step approval)
             -   WS10000031 (Two-step approval)
             -   WS10000276 (Approval single-level over limit)
             -   WS14000044 (Completion by purchaser)
             -   WS14000109 (Approval n-step over value limit)
             -   WS14500015 (Item approval)
             -   WS14000045 (Delete shopping cart after application error)
             -   WS10000202 (Transfer purchase requisition)
             -   WS10000215 (Resubmission of shopping cart by administrator)
    You need to check Event linkage is either Activated or Deactivated aor these above work flow . I fit is activated it shows green light.
    Muthu
    Edited by: muthuraman on Jul 29, 2008 2:38 PM

  • How do I know a user has been logged out from another screen

    If one user is already logged in to the web application and another user with the same user name and password trying to log in to the same web application, i need to logout the first screen's user session. In other word, I want to disable first screen access right since it has been logged out.
    I have a user log class to record users login activities. A new user log object will be created for every login.
    How should I do that?

    Try to write an implementation of HttpSessionListener and HttpSessionAttributeListener something like the one down below and configure it accordingly.Believe tht should very well cater your requirment.
    public SessionAttributeListener implements HttpSessionAttributeListener,HttpSessionListner{
       List<HttpSession> sessionsList;
        public SessionAttributeListener(){
             this.sessionsList = new ArrayList<HttpSession>();   
        public void sessionCreated(HttpSessionEvent se){
        public void sessionDestroyed(HttpSessionEvent se) {
                this.sessionList.remove(se.getSession());
        public void attributeAdded(HttpSessionBindingEvent se){
                    if(se.getName().equals("userInfo"))
                         this.appAction(se);
        public void attributeRemoved(HttpSessionBindingEvent se){
                  if(se.getName().equals("userInfo"))
                            this.sessionsList.remove(se.getSession());  
        public void attributeReplaced(HttpSessionBindingEvent se) {
        private void appAction(HttpSessionBindingEvent se){
                    UserBean ub = (UserBean)se.getValue();
                     for(HttpSession session:this.sessionsList) {
                             UserBean ub1 = (UserBean)session.getAttribute("userInfo"); 
                             if(ub1.getUserName().equals(ub.getUserName())){
                                    try{
                                       session.removeAttribute("userInfo");
                                       session.invalidate();
                                   }catch(Exception exp){}
                    this.sessionsList.add(se.getSession());
    }Hope this might give you a brief idea of how to go about. :)
    REGARDS,
    RaHuL

  • How to find out what brush has been applied to a path...

    Reading the scripting documentation I didn't find the way to access the information about a possible brush applied to a pathItem. Is there a way to get the information using JavaScript - surely it has been store somewhere? I'd like to access the information because I need to apply the original brush to a new path the script generates. Cheers!
    I don't feel like cracking open the SDK just yet. ;)
    Best regards,
    Antti Myöhänen

    Hi Jayesh,
    As a starting point, you could use FM BBP_PD_PO_GETDETAIL and BBP_PD_CONF_GETDETAIL.
    All data are stored in tables displayed in transaction bbp_pd.
    Kind regards,
    Yann

  • How do I know my iPhone has been wiped?

    Hi, my iPhone got stolen last night so I went home immediately and logged into me.com/icloud to wipe it, but it's saying that the request has been sent but will only be wiped once connected to the Internet.
    Whoever has taken it has turned it off, but if they turn it on again they will be able to use it provided they don't connect to the Internet, right? I had disabled 3G/data roaming so it won't be instantly connected to the Internet once they turn it on. Please help!

    They will very likely just restore the iphone and use it as their own.
    Your data should be safe.

  • If my iPad is lost, how do I know when it has been removed from my Apple ID account?

    I lost my son's iPad this afternoon. By the time I realized I couldn't find it and pulled out my phone to use the Find Phone My iPhone app, it may have been too late to set it up as lost. The iPad is still displaying in the app, but simply as offline. Of course, the iPad could be laying on the street somewhere, God only knows. However, if someone had reset the iPad and logged it into their own account, would it still display on my "Find My iPhone" account even if it were offline? Or, since they can reset it without being online, will it wait to refresh until they get it online? I am literally sick to my stomach, I just bought this 64 gig brand new mini two months ago for my autistic son, and he uses it daily. I cannot fathom the idea that it is not in the house, but if it were in the house, it would be connected to our Wifi automatically, and it would not be dead because I just charged it for him for our short trip today. How can I see if the seriel number is even still on my account? When I go into my account, it shows a white mini ipad, ours is black, and it does not show the same seriel number. HOWEVER, it does show that I called about the Mini on the 29th of October, so even though it is displaying as white with a randomly different seriel number, I did call about an issue on that device. Why would iTunes have a different mini seriel number set up under our account? If you cannot tell, I am freaking out. We're out $500 and I feel like there just has to be a way to get our iPad back. (Just for all of you KARMA beleivers out there: About a year and a few months ago, I was at the pool with my son and found a Kindle Fire. I immediately went through to find the owners information and contacted her to return it! There has to be good Karma for me in this situation!! ;-)  )   Please, help me determine if the iPad is still connected to my account! Anything! Thanks!

    I think you may need to book an appointment with a genius! They will fix it or replace it for you, for free!!! You can book an appointment at your local apple store at http://www.apple.com/retail
    Hope this helps
    Conchuir

  • Dynamic h:commandLinks : how do I know which one has been clicked?

    Imagine I have something like:
    <h:dataTable etc etc>
    <h:column>
    <h:outputText etc etc />
    </h:column>
    <h:column>
    <h:commandLink action="#{BeanName.removeEntry}" />
    </h:column>
    </h:dataTable>
    <h:inputText etc etc><h:commandLink action="#{BeanName.addEntry}" />
    so that when I add Entries, they get seen on the dataTable above..
    THe addEntry code is easy to do, it's only a ArrayList.add() method call but what about the removeEntry? I don't know how to figure out which 'remove' commandLink was clicked.

    If you have a datamodel in yo
    ur datatable, then you can do something like this:
    getModel().getRowData()
    This returns the selected row.
    From here it's with you.....

  • How do I know if spyware has been installed?

    Weird stuff is happening with my device.  No apps will be running and the audio recorder bar will be red and recording via autorap.  Background was changed while I showered the other morning.  Nobody in my home, was done remotely.  Battery drains quickly and if the iPad completely dies, you can only charge it on a dock, sync n charge cord will not work.  Need this crap removed.  HELP!!!!

    Hi Starlish,
    The only thing I can suggest doing is holding the power and the home button untill the iPad goes off and then trying to plug in to restore.
    Sorry if this is no good, but I really hope it helps.
    If that does not work than try this:
    Also, In General > Reset you have an option to Erase all Content and Settings.
    Message was edited by: Jpwpalfrey

  • HT4859 how do you know what is backed up/restored from iCloud

    How do you know what items are backed up to iCloud and also if the restore is correctly restored from iCloud.Are applications also backed up to iCloud

    What is backed up
    You get unlimited free storage for:
    Purchased music, movies, TV shows, apps, and books
    Notes: Backup of purchased music is not available in all countries. Backups of purchased movies and TV shows are U.S. only. Previous purchases may not be restored if they are no longer in the iTunes Store, App Store, or iBookstore.Some previously purchased movies may not be available in iTunes in the Cloud. These movies will indicate that they are not available in iTunes in the Cloud on their product details page in the iTunes Store. Previous purchases may be unavailable if they have been refunded or are no longer available in the iTunes Store, App Store, or iBookstore.
    You get 5GB of free iCloud storage for:
    Photos and videos in the Camera Roll
    Device settings (for example: Phone Favorites, Wallpaper, and Mail, Contacts, Calendar accounts)
    App data
    Home screen and app organization
    Messages (iMessage, SMS, and MMS)
    Ringtones
    The following items are not backed up to iCloud. You can sync these items with a computer using iTunes:
    Music, movies and TV shows not purchased from the iTunes Store
    Podcasts and audio books
    Photos that were originally synced from your computer

Maybe you are looking for

  • I moved iTunes music to my hard drive "D" and now it won't open!

    My hard drive "C" was getting somewhat full, so I decided to move my iTunes music files over to my second hard drive "D" (I have a dual hard drive on my computer). When I try and open iTunes, it says, "The folder 'iTunes' cannot be found or created,

  • My Display is getting brighter and darker during use

    Hi everybody, my display is getting brighter and darker while using the computer. Do you know if this is a problem pple knows about? Thank you for your help Ulli805 (Germany)

  • ADF web select one choice list return value

    hi how can i make a choice list that displays a value but return another value and then use it as a parameter in a method for a button my problem is how to return another value to the button thanks

  • Problems connecting Airport - self assigned IP addresses

    Greetings, I upgraded to a powerbook a few months back, and everything seemed to be working well enough until today. My internet connection (using airport on my powerbook) wasn't working. Usually I just unplug my modem, reconnect, and all works fine.

  • Can't turn bluetooth off, unspecified network in my computer.

    Why can't I turn my computer bluetooth off? And why is there an unspecified network in my computer? And why do the bluetooth file exchange automatically opens at the same time when all the above happens? Why do I have to reformat my computer and impo