Look Ahead Lov dosen't work for SubTab layout

Hi,
I have developed a custom page which can have multiple tabs.
When there is only one tab, everything works fine. Now when i try to copy a bid , which opens a new tab, and try to enter a valid value in the LOV field. I get a message saying 'Unable to fetch results. Please invoke the LOV window for search results'.
One more Observation here is , when an invalid item is entered and tabbed out, the Lov window should open up automatically. Which doesn’t happen for the second tab. Everything works fine when there is only one tab.
Please assist on this issue.
Thanks
AG

same problem here. Has there been any update on how to fix it?

Similar Messages

  • Look ahead LOVs

    Hi,
    I guess look ahead LOV feature is available in the latest OAF build (R12 version). I was trying to achieve this functionality but was not able to do so. As per the guide, I created messageLovInput filed and tried adding Look ahead LOV. After typing some character, instead of getting matching records, I was getting the message "Message FND_LOV_DATA_PROGRESS not found". I couldn't find any details about this message.
    Can anybody help me with this?
    Thanks in advance,
    Shree

    Hi
    I have implemented the same and i am not facing any issues with that. Try to run simple LOV and remove all the properties for LookAheadLOV .Check whether it runs or not.If it runs then change
    Look Ahead Enable : True
    Look Ahead Search Type : startsWith
    Minimum characters : 1
    This should solve your problem.
    Ajay

  • Look Ahead LOV Feature - From R12.1.2 onwards...

    I have posted a new article on my blog regarding Look Ahead LOV.
    http://oracleanil.blogspot.com/2010/09/auto-suggest-or-look-ahead-lovs-oaf.html
    Thanks
    --Anil
    http://oracleanil.blogspot.com

    Hi Anil,
    Thanks a lot for all the valuable information you are sharing with OAF techies and your precious time.
    Regards,
    Reetesh Sharma

  • Hi i need help one of my key on the keyboard dosen't work for some reason please help

    hi i need help one of my key on the keyboard dosen't work for some reason please help

    try smc reset
    http://support.apple.com/kb/ht3964
    and Pram reset
    http://support.apple.com/kb/ht1379
    (Try pram a few times to get correct sequence)
    Check what you have selected in
    system preferences/system/accessibility/keyboard
    and system preferences/hardware/keyboard  (keyboard and keyboard short cuts tabs)

  • NetInstall dosen't work for intel machines

    When booting the machines in my lab while holding down the OPTION key, only the G5 and earlier machines are giving me the icon for NetInstall. NetInstall works great on the G5 and earlier, but dosen't work at all on any intel machine I've tried. The image is marked as "Universal" in Server Manager, and is an image from an intel MacBook.
    Leopard Server 10.5.1
    I have 20 new iMac's in route. I really need NetInstall to work for them. Any help would be appreciated.

    You say that your NetInstall was taken from an Intel MacBook. Was its OS Leopard? If it is Leopard then you do have a bizarre problem on your hands as it is Universal. Tiger client, on the other hand, is not Universal.
    How new are the target clients? Could they have been shipped with a build of Leopard newer than the one you've based this NetInstall on?

  • Function recording_off dosen't work for EHP5

    Hi Expert,
           I am using function "Recording_off" in eCATT. The transport requirement for current client in SCC4 is deactived by this function. But I found there are some transaction codes like FSE2&GCL2 still need transport request when eCATT performed. But if the transport requirement is deactive by t-code SCC4, tcode like FSE2&GCL2don't any transport anymore. It is happen in EHP5 system, EHP4 system don't have this issue.
           Any clue to solve this issue?

    @nitehawk4300 
    ‎Thank you for using HP Support Forum. I have brought your issue to the appropriate team within HP. They will likely request information from you in order to look up your case details or product serial number. Please look for a private message from an identified HP contact. Additionally, keep in mind not to publicly post ( serial numbers and case details).
    If you are unfamiliar with the Forum's private messaging please click here to learn more.
    Thank you,
    Omar
    I Work for HP

  • Configure File Type Associations dosen't work for users

    Hi EB,
    Does anyones knows how to set the File Type Associations for users ? It works for me when i'm logged in as Admin but not as a user. When logged as user it always ask to configure the file associations when i open JDev and even with JDev open it does not set it. I tried to find an article about that but couldn't find any.
    I'm using :
    winXP SP3
    JDeveloper 11g TP4
    and i've sets all rights for autentified users on the folders and subfolders of JDeveloper.
    Thanks

    I tried going on tool>preferences>File Type .... and associate projets and source and applications files with JDev check marking "open with JDev"... it didn't worked as user... it's just not saving my settings while reopening it it's never saved... at least i've been able to associate it in my Admin account then i can go back in user account and select open file with in windows, choose JDev and check mark "always open that file with that program" only after that the association is saved in JDev... but still it open the Configuration file windows at startup with the ones i already opened with JDev checked... anyway that's not a big issue ... only that i can't save those settings by the JDev environement while logged in as a user...

  • @value tag dosen't work for java.math.BigInteger constants

    Is there anything I can do to get the Javadoc {@value} tag to document the value of BigInteger constants?
    I presume the issue applies to any object constants, but, BigInteger is all I need.
    Thanks for any advice.

    I apologize, I should have supplied more context....
    Here is my sample source
    package ...;
    import java.math.BigInteger;
    public class TestJavaDoc
    * TEST_STRING has value {@value}
    public static final String TEST_STRING = "IFQ Permit ";
    * TEST_BIG_INTEGER has value {@value}
    * Should also work like this {@value #TEST_BIG_INTEGER}
    * Constant ONE has a value {@value BigInteger#ONE}
    public static final BigInteger TEST_BIG_INTEGER = BigInteger.valueOf(1000);
    Here is the generated Javadoc, where you can see that @value works for a String, but fails for BigInteger....
    TEST_STRING
    public static final java.lang.String TEST_STRING
    TEST_STRING has value "IFQ Permit "
    TEST_BIG_INTEGER
    public static final java.math.BigInteger TEST_BIG_INTEGER
    TEST_BIG_INTEGER has value {@value}
    Should also work like this {@value}
    Constant ONE has a value {@value}
    Here is more context:
    javadoc -J-versionjava version "1.4.2_09"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_09-b05)
    Java HotSpot(TM) Client VM (build 1.4.2_09-b05, mixed mode)
    excerpt from build.xml:
    <target name="larryDoc"
    description="Generates JavaDoc Business Rule classes">
    <tstamp>
    <format property="generation.time" pattern="MM/dd/yyyy hh:mm:ss aa"/>
    </tstamp>
    <javadoc
    destdir="./businessRules"
    author = "true"
    version = "true"
    use = "true"
    windowtitle = "Business Rules"
    additionalparam="-breakiterator">
    <fileset dir="../business/src" defaultexcludes="yes">
    <include name="org/psmfc/er/business/TestJavaDoc.java"/>
    </fileset>
    <classpath>
    <path>
    <pathelement path="IER/business/classes"/>
    </path>
    </classpath>
    <bottom>generated: ${generation.time}</bottom>
    </javadoc>
    </target>

  • Quick look in mail4.4 not working for pdfs?

    Hi. some of my PDF attachments in mail don't show up with the PDF icon, it just says "mail attachment" with a blank white square aas the icon and whenever I click on it, it opens with textedit full of letters and numbers. I also can't quick llok the attachmets but when I go "open with" Adobe reader, it's fine. Is this a glitch in mail or is there something I can do, because it's really annoying! Thanks

    Yea, I did do a Time Machine restore not too long ago. Perhaps that was the cause. In any case, I went by the apple store day before yesterday to see if they could help me (I use quick look a lot!), and the tech's opinion was the my whole system was running slow and buggy, so he suggested to go ahead and spend the time doing a clean install of the OS. I did this yesterday... quick look for office docs is back, and my system is soooooo much faster and problem free now. Looking back, the ability of OS X to reinstall without erasing the boot disc is a blessing and curse. I upgraded instead of cleanly reinstalling when I got Snow Leopord, and recently did a time machine restore when I was having some problems. With windows, I was doing a clean reinstall at least once a year. Perhaps doing it once every two years or so is a good idea for mac. The biggest headache is importing all my old mailboxes into mail, and sorting through the duplicates that get created.
    Good luck

  • Amazon "look inside" feature has stopped working for me on Firefox (used to work in the past; not sure when it stopped). The feature works fine on Internet Explorer 8.0 when browing the exact same books on Amazon. I'm running Win 7 64bit. Thanks.

    After pressing "look inside", the loading message continues indefinitely. Sometimes, I get the message "server timeout".
    Internet Explorer 8.0 loads the "look inside" pages instantly for the exact same Amazon books.
    I have been running Win 7 64 bit for about 9 months. I believe the Amazon feature worked initially. Was running XP and Firefox prior to Win 7 and never had this problem. Used the "look inside" feature many times.

    I believe I found the issue with this.
    The IP Address that this server was sending out emails from, was at one point, blacklisted. So I changed the server to use our email gateway IP instead, and SMS Messages are being sent through now.
    -Matt

  • My Firefox hangs, I hadn't used an earlier program, I was railroaded into downloading it by AVG, it dosen't work for me, how do I uninstall it and still get benefit from AVG?

    I do not feel I had a free choice in downloading Mozilla Firefox and was railroaded into it by AVG when I renewed with them. Can I get rid of Firefox and still use AVG, as I think it is worse than Internet Explorer and seems to throw up more problems.
    == This happened ==
    Just once or twice
    == When I closed a jpeg down on website, and realised that I'd lost the site. ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; eMusic DLM/4; MSN OptimizedIE8;ENGB)

    I do not feel I had a free choice in downloading Mozilla Firefox and was railroaded into it by AVG when I renewed with them. Can I get rid of Firefox and still use AVG, as I think it is worse than Internet Explorer and seems to throw up more problems.
    == This happened ==
    Just once or twice
    == When I closed a jpeg down on website, and realised that I'd lost the site. ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6.5; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; eMusic DLM/4; MSN OptimizedIE8;ENGB)

  • I am having a hard time with a page that is working for everyone else. When I click on anything in the site I get a message that says "The page you were looking for doesn't exist."  This is happening on both my ipad 2 and my iphone 5. I cleared my cache

    When I click on anything in the site I get the message " The page you were looking for doesn't exist."  This website works for everyone else, but not on my iPad 2 or iPhone 5. I cleared my cache and history on the iPad, but it still isn't working.

    I live in Germany and my credit card is in my native country of Holland .. then it
    doesn't accept my credit card.
    Your first statement explains the second statement. To use the German iTunes Store, you need to prove that you're a resident of Germany (that is required by the content owners who will not allow cross-border sales) and the only way Apple can provide such a verification is by requiring that you enter in either a German credit card or a German-purchased iTunes prepaid card. Since I presume the former is not a possibility, you'll need to do the latter if you wish to purchase content from the iTunes Store. Again, this is not Apple's choice but is forced on them by the content owners as a requirement for Apple being allowed to sell the content. The EU is working on regulations that would force the content owners to allow access pan-EU, but that's still in the works.
    You do not need an iTunes Store account to activate and run your iPad, though; at least, I didn't need one for either of my two iPads. If you only want to set up an account so you can get free iPad apps, take a look here:
    http://support.apple.com/kb/HT2534
    Read the steps carefully as the order in which you follow them is apparently critical. This seems to come and go, or only apply to App Stores in specific countries, so you may not see the option for "None" when asked for a payment type.
    As to the German iTunes Store in English, you can comment to Apple on that via their feedback pages:
    http://www.apple.com/feedback
    Regards.
    P.S. Regarding "this is the only place for a complaint and that will no doubt get removed because
    I'm not full of happy joy sparkles.
    As stated in the terms of use to which we all agreed, this isn't a complaint forum, it's a technical support forum. You don't have to be full of "happy joy sparkles", but posts that are nothing but complaints may indeed be removed. If you want to complain to Apple, use the feedback pages.
    Message was edited by: Dave Sawyer

  • I was looking at the "Find my iPhone" app and I have a doubt regarding how it works for the macbook. In order to detect the location, the macbook should remain signed into iCloud. What if the thief logs out of iCloud. Would we able to locate the macbook?

    I was looking at the "Find my iPhone" app and I have a doubt regarding how it works for the macbook. In order to detect the location, the macbook should remain signed into iCloud. What if the person who has stolen my macbook logs out of iCloud.
    It should work fine for iPhone/iPad because we can enable "Restrictions" to prevent the user from signing out of iCloud. Do we have simialr settings for the macbook?
    Thanks,

    If it's not on the device list, it indicates that someone has gone to Find My iPhone on icloud.com and manually deleted it from the device list (as explained here: http://help.apple.com/icloud/#mmfc0eeddd), and it has not gone back online since (which would cause it to reappear on the device list; Find My iPhone has been turned of in settings on the device; the iClolud account has been deleted from the device; or the entire devices has been erased and restored.
    Unfortunately, there's no other way to track the phone other than through Find My iPhone.  You could call your carrier and see if they would blackliste it so at least the theif couldn't use it.

  • HT201272 I have recently picked up an Apple TV. When I go to the movies tab, there are less movies available there than there are in my i-Tunes account. I've done some looking around at questions from others, but haven't found an answer that works for me.

    I have recently picked up an Apple TV. When I go to the movies tab, there less movies available there than what is available in my i-Tunes library. I have 38 movies showing in my library but only 23 are showing in the Movies tab on the Apple TV. After researching this a little, there are only 23 movies showing under Purchased in the Quicklinks of my i-Tunes account. The majority of my collection are digital copy downloads that came from DVD purchases. Some of the missing movies were added in the past couple of months, the rest are a year-or-so old. I have done some looking around at questions from others, but I have not found an answer that will fix my situation. How do I update my library to get ALL of my movies to reflect that they were "Purchased"(as it says they were in their Properties)?

    Biggles Lamb wrote:
    Chill out guys, getting personal will never ever change another persons view, right or wrong, they are entitled to them .
    The pros and cons of to CC or not to CC have been done to death
    Its a fact the CC model will work for some, especially newbies and small businesses.
    The risks associated with the CC model have been well documented.
    For long term users of CS perpetuals its generally a large hike up in cost compared to the upgrade system.
    Then there are the....... Adobe can rot it hell...... group who will never subscribe
    To each their own, you do the math to suit your cashflow whatever that is and then make an informed decision
    To those on the CC model, I'd like to offer some practical advice.........do not allow automatic updates.........make regular backups............develop an exit strategy of alternatives for when you can no longer afford the subscription costs............never ever assume that the Adobe update is bug free
    Enjoy your cloud
    Col
    Thank you for that post, and the advice. I just happen to be one of those who it does work for. I've been around long enough to know that CC isn't going to work for everyone(the large publishing/radio/web company I work for isn't upgrading to CC because of the costs involved). But it does for me as I potentially venture out into the full-time freelancing world and away from the more structured big office environment. I can't make decisions based on what is best for anyone else, or what will hurt or help Adobe. Just what affects me, and that's all.
    Brent

  • In I tunes I cant down load a CD.  I get the message "The file couldn't be convereted.  You don't have write access for you ITunes media folder or a folder with in it. To change permissions, ...  When I do this it still dosen't work

    In I tunes I can't down load a CD.  I get the message "The file couldn't be convereted.  You don't have write access for you ITunes media folder or a folder with in it. To change permissions, ...  When I do this it still dosen't work.

    Thanks C F McBlob but I recursively changed the permissions of my Music directory meaning every file and directory beneath it, as well as the directory itself, had the write permissions added.
    I used "chmod -R u+w ./Music" and chmod -R g+w ./Music" to do it.
    Alas, no cigar. :-(

Maybe you are looking for