Is there a problem using popup LOVs in a portal form with a bind variable?

I have a portal form with 2 LOVs. The second LOV is a dependent LOV whose bind variable can be NULL. I have read Note 263923.1, "How To Create Dependent Lovs In Forms", and my form works as long as I use combo boxes to display the LOVs. I need to use popups so the user can search the LOVs as they are quite lengthy. Plus I want to be able to pick a value from my second LOV without selecting a value from the first LOV -- hence, my bind variable can be null and that is where my problem lies. As long as I select a value from the first LOV, the second LOV popup will work. If I click on the icon to display the second LOV without pre-selected a value from the first LOV, I get the following error:
POPUP LOV ERROR:
LOV: "9A17692880B6B8509F514F5B9CA9EC808DD403218B3CF19A33C04CD1FAB0ADE17ADC33E6B67998A933357CE5264D204E"
Parse Message: Parse as pre-set global: "TORE".
Find Message: LOV is of type DYNAMIC (LOV based on SQL query).
Query: "SELECT ...."
wwv_bind.prepare_bind: ORA-01403: no data found
My form is based on a table with a custom layout. The sql for the second LOV is similar to: SELECT ENAME, EMPNO FROM SCOTT.EMP WHERE (DEPTNO = :DEPT AND :DEPT IS NOT NULL) OR :DEPT IS NULL.
Thanks in advance for any help,
Carol

Don't use EPS any more! It does not support transparency nor color management.
If you save vector files from Illustrator, use AI with PDF compatiblity.
If you save image files from Photoshop, use PSD.
If you save image files combined with vector forms and/or text from Photoshop, use PDP which is a Photoshop PDF.
For vectors from Illustrator use CMYK files.
For images use RGB, conversion to CMYK should never done before PDF export, better, if the printer allows it, is to export a PDF with live transparency as it is PDF/X-4
If the printer requires a PDF with CMYK only export a PDF/X-1a.

Similar Messages

  • Default value of combobox using dynamic LOV in Oracle Portal form

    We are trying to specify the deafult value of a combobox on a form that derives it options from a dynamic LOV. The option value is a number and the display is text.
    E.g.
    <Option value="1">Books
    <Option value="2">CDs
    We have tried various ways of setting the default option to be selected on the Combobox. First, we tried using a sql query to return a number from a table (sql query returns number -> in the default value type field). Next, we tried to use a constant number (default value: 2, default value type: constant). In neither case, did the Oracle Portal form pre-select our default choice in the drop-down list.
    Any suggestions? I browsed the other forum articles on this topic and noticed several folks believed it was a bug in Portal. We are using Portal version 3.0.9 (latest App Server for the Ebusiness Suite). Thanks in advance.

    You can manually add the select list (or for that matter anything else) to a wizard created form. If the select list is for an existing item, simply change the "Display As" setting from Text to a Select List based on the LOV you create. Any changes made will then be applied by the update process.
    cheers,
    Ron

  • Are there any problems using a back cover.

    I want to protect the back of my iPad from scratches. Are there any problems using a skin or cover on the back?

    Is it  ok to cover the back of iPad 2? Won't it affect the cooling system? Coz I don't see any ventilation point and it may be the back metal plate itself which brings out the heat. I purchased a "Targus" back cover from apple store and it fits perfectly and beautifully also very comfortable to handle but I removed it thinking that it might harm., also Apple hasn't introduced any sort of back cover either, only the smart cover for the screen they have, may be coz the back is designed to be open to the air.

  • Is there any known problem using Oracle SQL Developer 3.0.04 with Java 1.7?

    I'm new to Oracle. I have installed Oracle SQL Developer 3.0.04 and Java 1.7. When I run Oracle SQL Developer, I will get the window Running this product is supported with minimum Java version of 1.6.0_04 and a maximum version less than 1.7. This product will not be supported....
    Is there any known problem using Oracle SQL Developer 3.0.04 with Java 1.7?
    I have already downloaded Java 1.6 but don't know whether I need to uninstall Java 1.7 first. If don't need to uninstall Java 1.7, how can I set Oracle SQL Developer to run with Java 1.6?
    Thanks for any help.
    Edited by: 881656 on Aug 25, 2011 11:22 AM

    Hi,
    One prior post discussing the use of Java 7 is:
    SQL Developer 3.0  and Java SE 7?
    There is no need to uninstall any Java version (except if you have disk space constraints) and no problem switching between Java versions. This may be controlled in the sqldeveloper.conf file in your ...\sqldeveloper\sqldeveloper\bin directory via the SetJavaHome line. For example:
    #SetJavaHome ../../jdk
    SetJavaHome C:/Program Files/Java/jdk1.6.0_26
    #SetJavaHome C:/Program Files/Java/jdk1.7.0Regards,
    Gary Graham
    SQL Developer Team

  • Cannot add popup LOV to existing update form for interactive report

    I have a requirement to add a popup LOV to an existing interactive report with an update form in apex 4.0.2.00.07. I have an insert form as well form the interactive report and was able to add the shared LOV as a popup correctly (so the issue isn't with the popup LOV definition). However, when I add the popup LOV to the update form, the field does not show up when I run the application. There currently isn't any data in that column of the table in the db (I'm adding the field so that users can update the data with the LOV return ID). Is there something I should look for that is keeping the field from showing on the screen that i have to check or uncheck?
    Edited by: user11201107 on Apr 5, 2011 1:46 PM

    Either write a classic report and implement your own filters, and use those on your update function, or try to retrieve the where clause Apex uses in the IR.
    This blog from Stew should help you on your way:
    http://stewstools.wordpress.com/2009/02/19/get-ir-where-clause/

  • How do I refresh a table with a bind variable using a return listener?

    JDev 11.1.2.1.0.
    I am trying to refresh a table with a bind variable after a record is added.
    The main page has a button which, on click, calls a task flow as an inline document. This popup task flow allows the user to insert a record. It has its own transaction and does not share data controls.
    Upon task flow return, the calling button's return dialog listener is invoked which should allow the user to see the newly created item in the table. The returnListener code:
        // retrieve the bind variable and clear it of any values used to filter the table results
        BindingContainer bindings = ADFUtils.getBindings();
        AttributeBinding attr = (AttributeBinding)bindings.getControlBinding("pBpKey");
        attr.setInputValue("");
        // execute the table so it returns all rows
        OperationBinding operationBinding = bindings.getOperationBinding("ExecuteWithParams");
        operationBinding.execute();
        // set the table's iterator to the newly created row
        DCIteratorBinding iter = (DCIteratorBinding) bindings.get("AllCustomersIterator");
        Object customerId = AdfFacesContext.getCurrentInstance().getPageFlowScope().get("newCustomerId");
        iter.setCurrentRowWithKeyValue((String)customerId);
        // refresh the page
        AdfFacesContext.getCurrentInstance().addPartialTarget(this.getFilterText());
        AdfFacesContext.getCurrentInstance().addPartialTarget(this.getCustomerTable());But the table does not refresh ... The bind variable's inputText component is empty. The table flickers as if it updates. But no new values are displayed, just the ones that were previously filtered or shown.
    I can do the EXACT SAME code in a button's actionListener that I click manually and the table will refresh fine. I'm really confused and have spent almost all day on this problem.
    Will

    Both options invoke the create new record task flow. The first method runs the "reset" code shown above through the calling button's returnListener once the task flow is complete. The second method is simply a button which, after the new record is added and the task flow returns, runs the "reset" code by my clicking it manually.
    I'm thinking that the returnListener code runs before some kind of automatic ppr happens on the table. I think this because the table contents flicker to show all customers (like I intend) but then goes back to displaying the restricted contents a split second later.
    Yes, the table is in the page that invokes the taskflow.
    Here are some pictures:
    http://williverstravels.com/JDev/Forums/Threads/2337410/Step1.jpg
    http://williverstravels.com/JDev/Forums/Threads/2337410/Step2.jpg
    http://williverstravels.com/JDev/Forums/Threads/2337410/Step3.jpg
    Step1 - invoke new record task flow
    Step2 - enter data and click Finish
    Step3 - bind parameter / table filter cleared. Table flickers with all values. Table reverts to previously filterd values.

  • Is there a tool that exports and imports Planning Web Forms with securities

    Hi,
    Is there a tool that exports and imports Planning Web Forms with securities?
    Besides Planning FormDefUtil.cmd
    OS: Windows2003
    Planning Version: 921
    Thx

    I don't think there is any one utility that exports both forms AND security. In version 9.3.1, the ExportSecurity.cmd will export dimensional security and form security. However I seem to recall that earlier versions only gave you the dimensional security, and not the form security. Unfortunately, I don't recall at which version the change was made.
    Have you given the ExportSecurity.cmd utility a shot?
    Hope this helps,
    - Jake

  • Are there any problems using an ipad imported to the UK from korea?

    Are there any problems buying an Ipad in South Korea to use in the UK?

    Me too - its a possible gift and (like most things) iPhones are cheaper in the states than in Canada.  
    I'm assuiming these phones are universal.  But i'd rather know before buying. 
    Thanks

  • Are there any problems using the Ipad while is is plugged into the wall and charging?

    Are there any contraindications using the Ipad while it is plugged into the wall and charging???

    The quickest way (and really the only way) to charge your iPad is with the included 10W USB Power Adapter. iPad will also charge, although more slowly, when attached to a computer with a high-power USB port (many recent Mac computers) or with an iPhone Power Adapter (5W). When attached to a computer via a standard USB port (most PCs or older Mac computers) iPad will charge very slowly (but iPad indicates not charging). Make sure your computer is on while charging iPad via USB. If iPad is connected to a computer that’s turned off or is in sleep or standby mode, the iPad battery will continue to drain.
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    At this link http://www.tomshardware.com/reviews/galaxy-tab-android-tablet,3014-11.html , tests show that the iPad 2 battery (25 watt-hours) will charge to 90% in 3 hours 1 minute. It will charge to 100% in 4 hours 2 minutes. The new iPad has a larger capacity battery (42 watt-hours), so using the 10W charger will obviously take longer. If you are using your iPad while charging, it will take even longer. It's best to turn your new iPad OFF and charge over night. Also look at The iPad's charging challenge explained http://www.macworld.com/article/1150356/ipadcharging.html
    Also, if you have a 3rd generation iPad, look at Apple: iPad Battery Nothing to Get Charged Up About
    http://allthingsd.com/20120327/apple-ipad-battery-nothing-to-get-charged-up-abou t/
    Apple Explains New iPad's Continued Charging Beyond 100% Battery Level
    http://www.macrumors.com/2012/03/27/apple-explains-new-ipads-continued-charging- beyond-100-battery-level/
     Cheers, Tom

  • Problem of POP LOV  in a  SQL Report  with pagination

    I am using a pop up lov (along with some other fields), HTMLDB_ITEM.POPUP_FROM_LOV(5, null, 'EMPLOYEE_LIST', '20', '50')), in a sql report. This is a report with pagination. Whenever I select any value from pop up lov on first page of the report it gets populated properly in the corresponding text field. But from second page onwards it doesn’t populate any value.
    For example, my report fetches a total of 50 rows, of which I am displaying 15 at a time. The popup lov comes with a text field for each row. Whenever I do select from popup lov for 1-15 rows which come on page 1, the values come up in the text field properly, but for rows 16-30 on second page, 31-45 on third 46-50 on fourth the values do not get populated. When I changed the pagination settings to display 40 rows..the values were still coming properly on page 1(1-40 rows) and not on the next page. Any clues… how to resolve this problem?

    good find. this is a bug that has already been identified and will be corrected in the upcoming patch release for htmldb. a good work-around for now is to use the equivalent declarative options in the tool. so rather than coding your query like...
    select ename , HTMLDB_ITEM.POPUP_FROM_LOV(2, null, 'DEPARTMENT', '20', '50') as "department" from emp
    ...just code it like this...
    select ename , null as "department" from emp
    ...and then use the column attributes screen for your "department" column to indicate that you'd like that col to be rendered as a "Popup LOV (named LOV)" using your DEPARTMENT list of values.
    hope this helps,
    raj

  • After upgrade to 3.1.2, date pickers and popup lovs mess up the form layout

    Now there are new table tags around every single date picker / popup LOV item and its' list icon which forces other items on the same line to the next one instead. Bad Oracle, bad!
    Any workarounds?

    Hello,
    >> Now there are new table tags around every single date picker / popup LOV item and its' list icon which forces other items on the same line to the next one instead.
    APEX 3.1 introduced the use of the &lt;fieldset> tag, for wrapping compound items, like the date picker or popup LOV items. In the following, you can learn more about it, including some workarounds:
    FIELDSET – new layout behavior in 3.1.1
    >> Bad Oracle, bad!
    For the very short term, and especially for upgraded applications, you might be correct; however, for the long run, this is a good move, because it creates uniformity in the ways we can handle all the APEX built-in item types.
    Regards,
    Arie.

  • Popup Lov in Master Detail Form

    we are working on a master detail form that is based on orders and products. we can view all products, that are contained in one order.
    In the order part, we can choose a field to be of the type: "Popup Key LOV (Displays description, returns key value)"
    However in the products part we do not get to choose this option. Is there a way to realize that?
    Also we would like the users to be able to add an entry to the popup list, but we cannot find where to edit the popup form.
    regards
    maik and chris

    how can i branch from the popup lov to the insert page?
    also, how can i have the produkt name displayed instead of the product id, after choosing an entry from the popup lov. (in the order part i can choose this as an option, but in the products part, i can't)

  • How to refresh Portal form with LOV POPUP ?

    I have a portal form which has a LOV which is a POPUP.
    When the POPUP is filled, I need that another LOV (a combo box) be refreshing by its dependent bind variable.
    When the Popup is filled, nothing happens.
    I tried with this javascript:
    do_event(this.form, this.name, 1, 'CUSTOM', '');
    But it works only if the first LOV that is the Popup is use as a combo box.
    I still need to use the Popup.
    Thanks.
    Enrique.

    This is a known issue and this is soon going to be fixed .It might be available in the next patch.
    Actually you will see that if you have written code in onChange of POPUP then if you change the value in the text box of the POPUP lov it will work but when you will select it from the POPUP values the event will not be generated.
    rahul

  • Problems using jdk 1.4.0-beta 2 with JDeveloper 3.2.3

    I've problems using the jdk 1.4.0-beta 2 with JDeveloper 3.2.3.
    Used jdk 1.3.1 before, evertything worked correctly, accept a smal prob with the minimize- and maximize-icons of JInternalframe.
    Got mail that this would be solved with new jdk.
    But when i define new JDK in JDeveloper and try to compile i get the following message:
    Error: (0) initialization error: class Error const *: class file has wrong version 48.0, should be 45.3 or 46.0.
    If i compile the code from the commandline with javac myself it compiles correctly and the program runs fine.
    can anyone help??

    The problem you are having is that jdev doesn't support the new beta..I have the same problem and I am currently compiling and executing from the command line
    I heard there is a workaround but I have never found it
    sorry

  • Use lov in a portal form

    Hi all,
    I insert a lov field in my form(my lov have null value). When I query data in this form, I want show all record, so I select null value from lov and exec query but no record is display. Can you show me the way to query all record in form have lov field. Thank so muach!
    Trung

    Yes indeed. Please see the links below.
    >> LOV">ApEX Solutions ->>> LOVMaster-Slave LOV<a/>
    {thread:id=1020789}
    {message:id=1371958}
    Regards,
    Phiri>> LOV">ApEX Solutions ->>> LOV<a/>
    {thread:id=1020789}
    {message:id=1371958}
    Regards,
    Phiri

Maybe you are looking for

  • Photo Shop Elements 5 used to work with Windows 8.1, but no longer

    I spent most of yesterday trying to get PSE 5 to open normally. I tested it last March, when I got the new computer, and it worked. After trying all the fixes suggested on the internet and finally reinstalling from the CD. It was able to open 1 photo

  • Can I use Yahoo email address in Mail?

    Hi, Friend bought a MacBook. He's had Yahoo email address for years. Can he use it in Mail? If not - is there a free solution? He has an Airport, so no need to get high speed. Thanks.

  • IPhone config utility won't work after Mavericks upgrade

    After my upgrade to Maverics, any time I try to use the iPhone Config Utility to install apps on my devices, when I click install, it crashes iPhone config utility.  I've already tried re-installing iPhone Config Utility - Any recommendations?  This

  • Usb content not visible on Z2 tablet

    Hi there, everyone! When connecting a USB-stick (Sandisk Cruzer Blade 64Gb in this case) I cannot find any content. ES Fileexplorer does not show any content (MP4 films in this case) Does anyone know about this problem? I am trying to look at films I

  • Recocile SC Challan

    Hello Friends, when I reconcile SC challan with ref. to GR documents system only showing order material system is not showing issues material to vendor and when I enter relevant SC Challan no.system give me messege.<b>Challan material is different fr