This should be a simple answer to a simple question.

Hey gurus,
I've looked all over this Forum and the JDeveloper 9i tutorial but I can't figure out how to disable the picklist box from my resultset. The searchable object is assigned to "MessageChoice" for the search option but that picklist value shouldn't be showing up in the resultset. I've tried all reconfiguring many of the options in the Property Inspector but nothing works.
Thanks,
-Scott

Which technology set are you using? Are you using OAF - if this is the case try the OAF specific forum.
http://forums.oracle.com/forums/index.jspa?categoryID=84

Similar Messages

  • I think this should be a simple question

    I doing a slide show of 20 slides and need them to be 20 seconds long. All my slides are done and I am having a bit of a hard time finding where I can set the timing per slide. I've got some builds on a few slides. Those are the only ones that stay up longer.
    Seems simple enough. Apple just works...right?
    This is for Pecha Kucha night.

    Greeting and Welcome to the Forum:
    In the Inspector > Slide > Transition menu, after you designate the Effect you want for the Transition, set the Start Transition window to Automatic and the Delay to 20 seconds. For those slides with Builds, you may need to adjust this Delay setting to achieve the pacing that you desire. With a little trial-and-error you should be able to get everything flowing properly.
    Good luck.

  • This should be a simple question...

    how do you change the music that plays during a photo slideshow in front row? thanks.

    yes, it can be deleted.
    http://docs.info.apple.com/article.html?path=Mac/10.4/en/mh2284.html

  • This might be a simple question.   On those sites that do not differentiate between models when on the internet I.e. Facebook when after your comment and you cannot hit "enter" on an iPad for examp. And speed is slow to connect.  What is = to post?

    This might be a simple question. On those sites that do not differentiate between CRT, laptop, tablet etc. such as an iPad Mini and using the Facebook site fir example when going to post a comment and you do not have a enter button on the IPad and the speed is slow how do you get your comments to post if we do not have a enter button? 
    <Email Edited By Host>

    I don't have facebook so I cannot answer but for your personal security, I have asked the hosts to remove your e-mail address.   It is very unwise to publish this.

  • I am still having issues with the TOC. I finally got several chapters and sections to show different pictures in the TOC, but have spent hours trying to figure out how to repeat it. This should be so simple. Is there an update? Please help us Apple.

    I am still having issues with the TOC pictures. I got several chapter/section photos to show up, but can't seem to repeat this success. It is some mystery that happened during a time that I had practically given up. This should be such a simple thing. Drag and place a picture into the placeholder and it shows up in the TOC....right? Help, help help! want to get this thing done and it's taken two days of work just get some of the photos to show up. I am going to have to publish this ibook with no photos in several sections.....why can't this be simple? I have even had someone else spend hours trying to figure this out. This software is such a GREAT idea....come on...help with this little part of it.

    I had the same problem myself. I got to the point where I couldn't replace the photo, of a new chapter, in the TOC. What I did was to duplicate an existing chapter that was working and was able to replace it's TOC's photo. I also found that if you try different areas of the photo you can sometimes get it to replace correctly. For example, instead of dragging the new photo to the middle of an existing photo, try dragging it to the right top corner.

  • This is a very simple question,but I don't know.Please me.Thank you!

    I am a Chinese student in a university.I have a very simple question to ask.
    I have writed a EJB module,and I have deployed to Weblogic8.1 successfully.
    1.Now I want to write a client program.Is it necessary that the client program is packaged in the EJB package.For example ,the EJB package is Beans,is "package Beans " or "import Beans.*" necessary in my client program.
    2.If I only know the EJB interfaces,that means the EJB module is writed by other programer.I want to know how I can write the client program.How can I call EJB module's method writed by other programer.Could you give me a simple example?
    Thank you very much.

    I have writed a EJB module,and I have deployed to
    Weblogic8.1 successfully.:-)
    1.Now I want to write a client program.Is it
    necessary that the client program is packaged in the
    EJB package.For example ,the EJB package is Beans,is
    "package Beans " or "import Beans.*" necessary in my
    client program.You need not package your client with the EJB. It can be a JSP/servlet or a stand-alone application.
    2.If I only know the EJB interfaces,that means the
    EJB module is writed by other programer.I want to
    know how I can write the client program.How can I
    call EJB module's method writed by other
    programer.Could you give me a simple example?
    import java.util.*;
    import javax.naming.*;
    import javax.rmi.PortableRemoteObject;
    import examples.*;
    class TestEJBHello {
        public static void main(String[] args) {
            Context context   = null;
            Object object     = null;
            // Hashtable for environment properties.
            Hashtable env = new Hashtable();
            env.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
            env.put(Context.PROVIDER_URL, "t3://localhost:7001");
            HelloHome home            = null;
            HelloWorld hello          = null;
            try {
                context     = new InitialContext(env);
                object      = context.lookup("HelloWorldTest");
                System.out.println(" JNDI Looked up >>> " +object);
                home        = (HelloHome)PortableRemoteObject.narrow(object, HelloHome.class);
                hello       = home.create();
                System.out.println(hello.hello());
            } catch(Exception e) {
                e.printStackTrace();
            } finally {
                close(context);        // Closes the initial context.
        private static void close(Context context) {
            try {
                context.close();
                System.out.println("*** Context closed. ***");
            } catch (NamingException namingException) {
                namingException.printStackTrace();
            } catch(Exception exception) {
                exception.printStackTrace();
    }Here's a sample client app code I use for a HelloWorld EJB. You need to have a EJB client JAR containing the home and remote interfaces in the classpath during compile time and runtime.
    x

  • This should be very simple...

    using the usb 9171 chassis and a ni-9411 module and Labview 2012
    I have one reflective optical reader wired to the 9411.
    this is mounted to the side of a conveyor bed to detect boxes passing by
    I've been trying to setup a VI to count the number of boxes that pass by the optical reader (that part is the easy part) but to also give me a gage that tells me boxes per minute (which could be as low as 1 box passes by per minute or up to 60 boxes per minute)
    any help??

    You could set up a frequency measurement task to do this.
    The tricky part is that the read is a blocking call--it waits until you have a sample available which only happens when a box passes by (starting with the 2nd box, the frequency measurement is computed by inverting the time between consecutive boxes).  You don't want to be stuck inside the DAQmx Read call for up to 1 minute.  A few ways to go about this:
    You can set the read timeout to some low value and discard the timeout error (-200284).  If you're using too much CPU you might need to add a wait to your loop in the timeout case (or maybe this is one of the rare times that setting the DAQmx Read Wait Mode to "Sleep" might actually help).
    You could poll the available samples per channel property to see when to read, but unfortunately polling available samples per channel does not query the onboard FIFO or initiate a transfer back to the software buffer (last I checked), so you'll be reading "0" for quite some time until the on-board FIFO starts filling up, at which point a large chunk of data will be transferred back to the DAQmx buffer in PC memory at once.  Note that this does not apply to PCI/PCIe DAQ devices which transfer data to the PC buffer pretty much as soon as possible--USB and Ethernet devices try to minimize the overhead of unnecessary data transfers but in this case it is a hindrance.
    Using the DAQmx Every N Samples event has the same problem as #2.
    Reading -1 samples returns whatever is in the DAQmx buffer in PC memory, so it also has the same problem as #2 (the read will return 0 samples until the hardware decides to transfer the data over to the PC).
    In your case, you might have luck with #2, #3, or #4 by setting the CI.DataXferReqCond to "Onboard Memory not Empty", but without being able to validate any of these workarounds I think I'm just going to recommend you use suggestion #1:
    You can either run this task in addition to your current edge count task (there are 4 counters on the 9171 which should be plenty given you can only have 1 module), or you can run it instead of it (poll back the Total Samples per Channel and add 1 to determine the count of boxes, however you wouldn't be able to distinguish between 0 and 1 boxes this way since the first sample is returned after the 2nd box passes).
    Best Regards,
    John Passiak

  • This should be a simple function but...

    i cant seem to figure it out.
    Hi everyone!
    I am working on a spreadsheet to help keep track of my finances but cannot figure out one very important formula. Heres an example of what i want to do. In cell A1, I've got the balance of my auto loan. In column C I've got a drop down menu of various bill; in the adjacent column i enter the amount I've paid towards that bill for that month. So when I select "Auto Loan" from the pull down menu, i want it to subtract the amount in the adjacent column from the amount in A1. I've tried using the VLOOKUP formula, however, this only returns one value, even when there is more than one cell with the matching criteria. I need it to return the sum of these cells.
    Can anyone help? Thanks! Rob

    Hi,
    I'm not sure how your table is formatted, but I thought this might illustrate a solution. I'm assuming that columns C contains all manner of daily expenses, food, clothing gas utilities, etc. I'm also assuming you are interested only in the "current" balance of you car payments, not intermediate balances from the initial amount. The formula is:
    =Auto Loan Balance Initial Balance-SUMIF(Expense,"Auto Loan",Monthly Payment)
    pw

  • This should be a simple AFP script..but no..

    Ultimately I'm trying to write this script to turn AFP on when it suddenly shuts off. However, I thought I would start easy and just use an echo command for the then statement.
    Anyway, if I use the spaces by the "=" in the "if" statement, then the script just exits and does nothing. However, if i take the spaces out, the script always does the then statement, regardless if the "if" part is true or not.
    So what am I doing wrong?
    #!/bin/sh
    if [ ps cx | grep AppleFileServer = "" ]
    then
    echo Not On!
    fi
    exit
    Thanks!!

    #!/bin/sh
    if [[ `ps cx | grep AppleFileServer` = "" ]]
    then
    echo "Not On!"
    fi
    exit 0
    I made 4 changes. The double square brackets in the test statement, the backticks around the ps|grep, double quotes on the echo string, and a 0 for the exit status. The tab in front of the echo statement is just for aesthetics.
    Roger

  • Okay.... this should be very simple

    when i click on a text file... .php or .tcl or .c or whatever.... when i click on the source file i want it to open in a new console window in vi ....
    except from the command line i can;t even FIND vi or vim or gvim on this box...
    so, how do i associate text files with a given extension with vi (or the mac equivalent) so i can get some work done????

    The extension is of little relevance in Mac world. Find the file you want to open, Highlight it. Cick cnd+I. In the box that opens, down click the Open With triangle. Either select the applicatrion you want, or navigate to the application you want to open this. Thyen, hot "Change All.
    Is this what you want. I really have no idea what all the extensions are.

  • This should be rather simple...

    Hello, I'm new to Dreamweaver and a novice website builder. I
    have a website that I've designed in a table. The top two rows
    remain the same on every page as well as the navigation running
    down a column on the left side. Is there a way to setup a script
    where you could click on a navigation button and the content/text
    would change in the adjoing cell to the right?
    I'm sure I'm forgetting some crucial information here, so
    feel free to ask for more detail.
    Thank you for your help in advance!

    That would be frames... DO NOT USE FRAMES!
    SSI (Server Side Includes) would be your best bet. You can
    create your menu
    on the left side and your headers at the top. In reality the
    whole page
    will change but the effect will be the same.
    Study up on html code, SSI and CSS styling.
    The greatest advantage is that you can modify your menu, put
    only that file
    to the server and every page on your site will be instantly
    updated without
    ever touching them.

  • "i know this may be a simple question...but"

    I just received my iPod classic yesterday, and when i went to plug it into the computer the register now or later screen came up. I pressed later. The next screen was the terms and agreements, and I pressed the checkbox that i agreed with them. The only problem is my iTunes won't allow me to reach the agree box to click to continue. There is no horizontal scroll bar and i still can't see maybe 1/4th of the page. I've tried about everything, and the answer may be simple. I'm just looking for help. Thank you.

    Set your screen resolution to at least 1024x768.
    See this -> iTunes window does not display all options

  • This is a very simple question about multi-channel audio playback

    I have an mp4 file that i made and i made it 7.1 surround sound, and i'm pretty sure that this 7.1 surround sound works, as it can be played in VLC. i'm using netstream to load my files now. How do i make it so that flash can playback all 8-channels of sound? I suppose kglad would know the answer

    Flash doesn't support multi-channel audio (yet?)

  • Should be a simple question...

    Hi,
    When searching in Mac how what are wildcards? For instance I'm using the search tool to search for all files that are greater than 100Mb. I've clicked the plus button and put the file size criteria in, however I can't make it search for all files, I have to put in each individual character.
    Cheers,
    Phil

    Works fine for me on my machine. Press Command-F in the Finder, a search window will appear. Press the + button until you see an entry for "Size". Then click the - buttons for all the other criteria except for the "Size" one. So now you should only have the "Size" one showing. Change the "equals" popup to "is greater than". Type 100 into the text field to the right of the, now, "is greater than" popup. Then change the "KB" popup to "MB". It should automagically start searching and returning results for files greater then 100MB. Hope that helps.

  • What should be a simple 'button' script

    Too old, too many hours working on this and too tight a deadline. This should be a simple script, but I'm getting nowhere fast!
    User enters a dollar amount into a field called 'Pay', clicks one of four radio buttons called 'Frequency' labeled 'Weekly', 'By-weekly', 'Monthly' and 'Annual'. Based on button pressed, a field called 'Annual' is updated to reflect the results of:
    Weekly = Pay * 52
    Bi-weekly = Pay * 26
    Monthly = Pay * 12
    Annual = Pay * 1
    Eventually, this form will be distributed throughout our entire organization, with completed forms being emailed to a central office. As a result, I'm working in LiveCycleES and Java, both of which I'm a novice with.
    Any assistance from this forum is greatly appreciated. Even a link to a working example of this process that I could decipher on my own would be a great help.
    Thanks so much.

    For a radio button group called 'frequency' where the value binding is
    1 - weekly
    2 - bi-weekly
    3 - monthly
    4 - annual
    you could add the following client-side JavaScript to the 'frequency' change event.
    var frequency = form1.subform1.frequency.rawValue;
    switch (frequency) {
    case "1":
    form1.subform1.annual.rawValue = form1.subform1.pay.rawValue * 52;
    break;
    case "2":
    form1.subform1.annual.rawValue = form1.subform1.pay.rawValue * 26;
    break;
    case "3":
    form1.subform1.annual.rawValue = form1.subform1.pay.rawValue * 12;
    break;
    case "4":
    form1.subform1.annual.rawValue = form1.subform1.pay.rawValue * 1;
    break;
    default:
    break;
    Steve

Maybe you are looking for

  • SAX and JNI

    I'm having problems using Java classes from C. I've managed to trace the problem as far as the SAX parser, but I have no idea why there's a problem at all. With the -verbose:jni option on, there's a message: "Unable to read from file" and then the JV

  • How to display data sent from a midlet to a servlet over an outputstream in

    a browser?? Hello Currently I send data to a servlet from a midlet and the servlet recieves and processes the data (confirmed through breakpoints) but I want to display the data in a JSP or directly thru the servlet using html tags. However I can for

  • How can i change the setting for audio-video for my face time to built in only so i can have my skype camera ?

    Good evening, The last few days my I lost the ability on Skype to be seen by the other party ... I can see them but they cannot see me. At the same time my Face Time sent me some messages error. When I open my Skype and go to Preference and go to aud

  • String function question

    In Sybase, I could use "LEFT" or "RIGHT" to return X number of characters in a string. Does PL/SQL have a similar function?

  • Need help in date columns

    Hi, Need a help in using a date columns, I have the below 2 columns (mm/dd/yyyy hh:mi:ss) and I want to exactly find the number of hours and minutes between those 2. please help me. Start time - 9/2/2010 8:12:03 AM End time - 9/3/2010 9:12:03 AM Than