ADF LOV  (Just allow to select but not validate)

We need a LOV on a column. User wants to look up using the LOV , sometimes he selects data from the LOV and sometimes he will enter the data he wish..
Example :
Let say i have deptIDs: 10,11,15,20,21etc
Sometimes user picks the exact deptID and sometimes he wants to enter something like 1%.
When user enters something like 1% , it defaults to the first value staring with 1%, but instead we need to save in database as it is (1%)
Please suggest

Try <af:inputComboboxListOfValues> or <af:inputListOfValues> components.

Similar Messages

  • I have a cracked iPhone 6 screen. I just bought the phone, but not AppleCare. If I get my iphone screen replaced through apple how much do I pay and would it void my one year warranty with Apple?

    I have a cracked iPhone 6 screen. I just bought the phone, but not AppleCare. If I get my iphone screen replaced through apple how much do I pay and would it void my one year warranty with Apple?

    To replace your phone's screen costs $109US and I don't see why having Apple replace the screen would void your warranty.
    http://www.apple.com/support/iphone/repair/screen-damage/

  • Screen Saver doesn't allow SOURCE SELECTION but automatically begins to download unknown files. I have to force quit, but it does the same thing each time I try to select a source.

    Screen Saver doesn't allow SOURCE SELECTION but automatically begins to download unknown files. I have to force quit, but it does the same thing each time I try to select a source.

    Do you realize that you're talking to yourself?
    iMac refurb (27-inch Mid 2011), OS X Mavericks (10.9.4), SL & ML, G4 450 MP w/Leopard, 9.2.2

  • How do I delete just the firefox bookmarks but not the the bookmarks toolbar icons

    I deleted my firefox bookmarks so I could import my gooogle bookmarks,but this also deleted my firefox bookmarks toolbar entries...it took me along time to put these in again.
    How do I delete just the firefox bookmarks but not the the bookmarks toolbar icons

    What kind of problems did you get after installing the extension?
    You can try to remove the history manually in the History Manager by doing a search for a colon.
    How many history items do you have to remove?
    If you only want to do this once or occasionally then you can consider to use this code:
    *http://kb.mozillazine.org/User:Dickvl/JavaScript_Error_Console#Expire_History_By_Days
    You will have to calculate the number of days that you want to keep to remove only history items from 2013 and older (365+31+28+26)
    You can open the Browser Console (Firefox/Tools > Web Developer).
    Paste the JavaScript code in the command line and press the Enter key to run the code.
    *Toggle the devtools.chrome.enabled pref on the <b>about:config</b> page to true to enable the command line
    *https://developer.mozilla.org/Tools/Browser_Console#Browser_Console_command_line
    <pre><nowiki>
    (function(){
    /* expire history by days, based upon bug 660646 comment 5/7 - [email protected] */
    var Cc = Components.classes, Ci = Components.interfaces;
    var his = Cc["@mozilla.org/browser/nav-history-service;1"].getService(Ci.nsIBrowserHistory);
    var prs = Cc["@mozilla.org/embedcomp/prompt-service;1"].getService(Ci.nsIPromptService);
    var day = 0, obj = new Object, txt = "Expire History"; obj.value = "90";
    if (prs.prompt(null,txt,"Days of history to keep",obj,null,{})){
    day = parseInt(obj.value);
    if(!isNaN(day)&&(day>0)){
    his.removeVisitsByTimeframe(0,(new Date().setHours(0,0,0,0) - day * 86400000) * 1000);
    }else{ prs.alert(null,txt,"Error Parsing Days: "+obj.value); }
    </nowiki></pre>
    If hat doesn't work then you may have a problem with the places.sqlite database file and you may have to reset places.sqlite.
    *Places Maintenance: https://addons.mozilla.org/firefox/addon/places-maintenance/
    You can move (copy/paste) history items that you want to keep to a bookmarks folder.
    See also:
    *Norwell History Tools: https://addons.mozilla.org/firefox/addon/norwell/

  • How can I tell how many licenses are included in a volume license?  I can login, but am unable to see the number included, just says purchased "1", but not the amount in the volume.

    How can I tell how many licenses are included in a volume license?  I can login, but am unable to see the number included, just says purchased "1", but not the amount in the volume.

    Hi networka,
    Please see this page for links to the resources you can use to manage a volume license: Customer resources | Adobe Buying Programs. You should be able to find this information by logging in to the Licensing Website.
    Best,
    Sara

  • Impact of just parking invoice doc, but not posting???

    I would like to know the risk/constrain involved with the below process, which may not be a standard practice.
    1. Service Provider maintains Classic SRM/ECC. Customer maintains own ECC.
    2. Shopping cart created in SRM and PO generated in ECC of Service provider.
    3. PO transferred to Customer ECC. Invoice posting, Payment and FI activities are carried out in customer ECC.
    4. Basic Invoice Information is transferred back to Service provider ECC, so this invoice will be shown as follow on document in the shopping cart. It will show only the invoice number and it is only for the informational purpose. There is neither finance activity nor any reporting are made out that system.
    Service provider just want to Park the document and not to post it, so it won't hit the GL account. This eliminates considerable work FI configuration settings.
    Question is whether this unorthodox method of just parking, but not posting will cause any impact/risk, even though no FI activities is carried on that system.

    It is not a normal practice and does not fulfill the intent of the park process but as long as you have controls around preventing those parked documents from being posted this should probably work.
    Consider them to be a little akin to delivery accruals that are never matched to an invoice, my thoughts are you might want to HOLD rather than PARK these documents.
    You will also need to consider what your long term housekeeping and archiving strategy will be for these essentially orphaned documents.

  • How to "Save for web" just the layer effect but not the content area?

    I fill the area with white, then add outter glow to the layer. Now I want to "Save for web" the outter glow effect but not the white area. I want the white area to be transparent. If I delete the white area, the layer effect goes away, if I merge the layer with another to flatten (think then I can delete the white middle while keeping the layer effect stay),  the layer effect look totally different after flatten.

    Set the fill to 0% in the layers panel (not the opacity). Then save for web as a PNG24, with transparency checked.

  • Pls Help!! BMP EJB can select but not modify table

    Hi, please help!
    I wrote a CMP EJB for a simple table. Inside are JDBC calls to the database, using a connection object generated from the line:
    return new oracle.jdbc.driver.OracleDriver().defaultConnection();
    Or
    return DriverManager.getConnection("jdbc:oracle:kprb:");
    The EJB compiled and deployed without problem to OracleJVM, but using it with the test app, the bean can select, but no insert or update to the table!!!
    Then I found that, if I use the thin driver, as well as the username and password in the getConnection() call, I can insert and update without problem...
    I desperately need help for this problem, please enlighten me with any thought.
    Yours.
    Patrick.

    I have been suggested to use JNDI JDBC Datasource, but still no hope. Can someone on the JDev team helps?
    Very desperate.... =(
    Patrick.

  • Lidswitch:How to just shutdown the screen but not hibernate the system

    I used to set HandleLidswitch = hibernate in /etc/systemd/logind.conf and when I close the lid, only the screen was turned off and everything went on in the system. So I can sit there waiting for the work done without being distracted from the flashing outputs of gcc.
    But after reinstalling the system(I made a stupid mistake), it seems that after HandleLidswitch is set to "hibernate", it completely shutdown the computer, which stick to the defination of hibernate, but not what I want.
    How can I get the good old feature back? Thanks in advance!

    You can set HandleLidSwitch=ignore and then set what you want with acpid.

  • Paneltab always remember user prev selection but not programmatic disclosed

    Hi,
    Like the similar post Programmatic disclosure of showDetailItem under panelTabbed i would like the tab to be selected / disclosed based on the button the user click.
    I have a paneltabbed component in a page called site which consists of 3 showdetailframe components ..let's call it as (tab1,tab2,tab3) . I have a button (go to site) in entirely different page called plot which should navigate to site page and open tab3 by default.
    This works fine, for the first time. But let's say if user explictly clicked tab2 and then gone to plot page, click GoToSite button which navigates to Site page, but remembers the last selection user has made and selecting tab2 by default.
    I have the following method in site page taskflow which is called always and evaluates the value which i set in the request scope on clicking GoToSite button.
         public void setCopyPlotTabOnSiteDetails()
              FacesContext context = FacesContext.getCurrentInstance();
              Map request = context.getCurrentInstance().getExternalContext().getRequestMap();
              Boolean copyPlotFlag = (Boolean)request.get("copyPlotReq");
              if (Boolean.TRUE.equals(copyPlotFlag) && panelTab != null)
                   List<UIComponent> element = panelTab.getChildren();
                   for (UIComponent child : element)
                        RichShowDetailItem sdi = (RichShowDetailItem)child;
                        if ("sdi2".equals(sdi.getId()))
                             sdi.setDisclosed(true);
                             _addAttributeChange(sdi, "disclosed", true);
                        AdfFacesContext.getCurrentInstance().addPartialTarget(sdi);
                        else
                        sdi.setDisclosed(false);
                        _addAttributeChange(sdi, "disclosed", false);     
                        AdfFacesContext.getCurrentInstance().addPartialTarget(sdi);
              AdfFacesContext.getCurrentInstance().addPartialTarget(siteDetails);
                   AdfFacesContext.getCurrentInstance().addPartialTarget(panelTab);
    After following the post Programmatic disclosure of showDetailItem under panelTabbed i added this method call addAttributeChange
         private static void _addAttributeChange(UIComponent uic, String attribName,
                                                           Object attribValue) {
              try
                   FacesContext fc = FacesContext.getCurrentInstance();
                   ChangeManager cm = RequestContext.getCurrentInstance().getChangeManager();
                   ComponentChange cc = new AttributeComponentChange(attribName, attribValue);
                   cm.addComponentChange(fc, uic, cc);
              catch (Exception e)
                   // TODO: Add catch code
                   e.printStackTrace();
    But is giving NullPointerException on ChangeManager.
    Even otherwise, i have removed the option Enable User Customizations from my View Project (checked in web.xml) and removed the ShowDetailFrame tag in Adf-config.xml. Put the disclosed property in DontPersist attribute of all those showdetail frame components. But nothing worked, i face the same issues...Can any one please help me?
    Regards
    Prabhu

    Hi,
    why do you work so cmplicated. Wouldn't it be simpler to point the disclosed property to a managed bean that then evaluates whether true/false should be returned instead of parsing the component tree? The managed bean would need to be in viewScope. Also note that a request parameter should be read by a pahse listener (f:view afterMethod listening to RESTORE_VIEW) because the ADF Faces page is not rendered in a single round trip but deferred by default which means that subsequent requests are issued. So the first request will be intercepted and then the value added to a bean or attribute in view scope for use by the tabs.
    Another cause of error we frequently see is that personalization is enabled (with or witjout MDS) in which case the tab selection is saved as personalizes setting.
    Also have a look at: http://docs.oracle.com/cd/E23943_01/apirefs.1111/e12419/tagdoc/af_showDetailItem.html
    See: disclosedTransient and disclosed property and how to use them
    Frank

  • Can select but not use iPhone 4 WiFi in iOS 4.3.4 & 4.3.5

    After I updated my iPhone 4 to iOS 4.3.4, I could select my WiFi-connection, but it would refuse to use it. The 3G or circle-icon showed instead of WiFi. In the settings, my home WiFi is slected, but it is not used. The 3G keeps showing instead. I tested it using YouTube and the browser and the speed is indeed 3G speed. I upgraded to 4.3.5: still the same problem.
    I went to the settings, chose to ignore my WiFi network. I then re-scanned, chose my WiFi, just to refresh everything. It still didn't work. I restarted my phone, which also didn't solve the problem. Whenever I go to the settings, it shows the selection of my WiFi with the checkmark on the left as if I am actually using it, but it doesn't.

    If you update to iOS 4.3.4 or iOS 4.3.5, you will need to power-off your WiFi-router, wait a couple of seconds and power it back on. Then, your WiFi-connection will work with the iPhone 4. If you don't do that, you will not be able to use WiFi on the iPhone 4.
    Rebooting the iPhone or re-selecting the WiFi-router (even after deleting the connection) will not get the job done. Only by powering off/on your router. Now, it works again.

  • New Purchase feature will allow to watch, but not offline

    Buyer beware!
    New purchase feature of the AppleTV IOS system will allow you to purchase TV Shows and such, however you can NOT download purchased content.  I have an AppleTV and a Mini Server with a 4TB Disk attached, and when I made a Purchase on Apple TV, I get a counter for how long it will take to sync to iCloud for my personal viewing pleasure, but I can not download to my Mini Server's iTunes library.  I had to purchase a 2nd copy to store locally and use to sync to my devices for watching offline. 
    L A M E!  If I purchased it, I like that iCloud will allow me to stream it and watch it via Live TV, but why can't I download it to watch offline.  Do you honestly think I'm going to travel with my AppleTV and stream video's over an Airplane's wireless 36000 feet in the air on my way to Germany?  C'MON!
    Also, why am I waiting 39 minutes for the episode to be made available, if I rent it I can stream it instantly, if I pay you MORE for it, I'm penalized by having to wait over 1/2 an hour to begin my stream session.
    Call me confused!
    - Disgruntled iTunes High Spender

    All you have to do is open iTunes  select iTunes Store and on your home page right hand side under Quick links
    there is a purchased link.
    In here you will find your Music, T.V. Shows, Apps and Books that you have purchased.
    Find the episode you purchased on your AppleTV in the list on the Left.  Select it then click on the Cover art.
    You will get a Pop up window and be able to download from there.

  • Allowing camera access, but, not recording

    When accessing my Flex 4.5 LCCS application from the web browser,
    I receive the Flash Player Settings popup.
    Camera and Microphone access.
    "local is requesting access to your camera and microphone, if you click allow you may be recorded".
    I click allow, but, the microphone is not active, the progress slider never moves.
    When I run this application from the debugger, it works just fine, I can see the progress slider move according to my
    speaking into the microphone.
    FlashPlayer 10.1 on the OSX Snow Leopard.
    Thanks in advance.

    Hi Can you share your code. I dont see a problem at our end, and would need more information to help you.
    Thanks
    Arun

  • I have a new IPAD4 which has synced pictures i selected but not music or films i selected from itunes library? I have had an account for years and never had issues syncing with iphone or ipod? when i attempt ipad the data shows and it cycles but nothing?

    show the data shows whe i selet for sync (i have ticked sync only ticked icon) and selected two playlists - the data usage shows an extra 3.2 gb off my 32g ipad and the movies show up purple on the data usage bar, i press apply / sync it takes 20mins to go through 5 stages - never once do i see a song title or number in the update display. then when it finishes the data usage bar goes back to the lower amount before i tried to add the music and movies to my ipad?? The only thing that i have managed to move if pictures??
    Im confused, ive always got on fine with moving, updating and syncing my iphone, ipod touch, have done this the same way but NO music or films
    when i go through the summary section it says i have selected 757 songs (off two playlists) and i movie (from a digital copy via itunes), they show in usage bar b4 sync but then after sync nothing! i have tried both wi fi sync and normal, i have the lastest updates and CANT FIGURE THIS OUT
    When i set up the ipad out the box the other day it asked whether i wanted a NEW INSTALL or RESTORE FROM ICLOUD BACKUP (presumbly off iphone), I choose restore, it then downloaded all the apps and web history/bookmarks etc, although it took about 8 hours to do it which i thought was odd?!
    Ive spent £500 on this and if i cant put my msuc or movies on it that makes it a very exspensive web browser, APPLE this should be easier .......! please help - im no techno noob beither grand master, just your average user so im sure people might know what to do... i freakin hope so!

    ps when syncing it jumps through steps 1 - 4 real fast, i seem to remeber iphone showing the number of tracks transferring and names, but i see nothing? then it sits on 5 saying "waiting for changes to be applied"

  • How do I hide a pulldown menu if one of it's values has been selected but not others?

    Through searching this forum, I've been able to figure out how to hide pull downs and fields that only have numeric info in them. I.e if the user selects. or if the pulldown value is zero. The item does not show or print on the form.  What I cannot find, is how do you accomplish this if the values in the  pulldowns are text? I.E. the pull down has three choices "choose an item", "ITEM 1", "ITEM 2". It defaults to "choose an item" and if left this way, I want it to be hidden or set to null, but if ITEM 1 or 2 are selected. Then it shows/prints ITEM 1 or ITEM 2 in the spot.
    thank you for your help on this issue.

    I figured it out
    and need to give kudos to George Johnson due to an answer he gave in 2008 pointed me to the solution.
    http://forums.adobe.com/message/1152008
    First I assigned a calculated value to each of the text items.
    Then here is my script.
    // Get field value
    var v1 = +getField("Description1").value;
    // If the value does not equal 0 then use the value
    if (v1 !== 0) {
        event.value = v1;
    } else {
    //If the value does equal 0 then blank the value
    event.value = "";
    Message was edited by: AXNUCorp due to a funky cut and paste

Maybe you are looking for

  • How to maintain 1 iTunes library on multiple computers

    Hi, I have a desktop and a laptop, both of which I want to have the same iTunes library on. I dont want them both to be turned on at the same time so using "sharing" is not really an option. I currently have my entire library on Skydrive so both comp

  • Why can i no longer listen to audio books i bought on i store - won't recognise my password?

    So how is one supposed to listen to an audio book you have started to then have to confirm passwords to find it is not reading this informaiton ? getting bored of apple nonsens

  • Oracle 11 can not connect with toad

    Hello to all, I just installed oracle 11 on my pc running vista. I can connect to the data base using sqlplus but not with Toad (version 8.6.1). I enter user and password and nothing happens. Not even an error message. I was using previously oracle 1

  • Using a Nikon CoolScan 5000 with Lion

    I have been using my Nikon Coolscan 5000 ED with Snow Leopard without problems, using SilverFast 6. Since SilverFast upgraded to version 8, and I upgraded to Lion, I couldn't use the multislide scanner SF210. Now silverfast have produced a Beta versi

  • Network Installation of Photoshop CS4 ?!

    hello community! i want to install photoshop cs4 on a network-drive or an server, to use photoshop cs4 from such clients. first question: is it possible (network-installation)? second question: ok, i just have one license.  is it possible, that some