Tab out from the lov gives the error

Hi All,
We have an LOV as soon as we tab out or select anything using the glaas icon the error page opens up giving the following error:
## Detail 0 ##
java.lang.NullPointerException
     at oracle.apps.mth.setup.meter.server.MTHMeterSetupAMImpl.setComponentValue(MTHMeterSetupAMImpl.java:202)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:597)
     at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:190)
     at oracle.apps.fnd.framework.server.OAUtility.invokeMethod(OAUtility.java:153)
     at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.invokeMethod(OAApplicationModuleImpl.java:762)
     at oracle.apps.mth.setup.meter.webui.MTHMeterSetupCO.processFormRequest(MTHMeterSetupCO.java
Can someone please tell me how to overcome this error.
Thanks a lot for your help

Hi,
From this error stack it is not possible for me to guess anything.
Please share the properties, LOV map details for LOV, then we can look into this.
Regards,
Reetesh Sharma

Similar Messages

  • My video i have successfully worked on for seven days now won't open at all.  It says there is no sequence of this type found... But in the very bottom bar I can see the whole project load.  But the only option from the error screen is exit out of Premier

    My video i have successfully worked on for seven days now won't open at all.  It says there is no sequence of this type found... But in the very bottom bar I can see the whole project load.  But the only option from the error screen is exit out of Premiere Pro CC.  I am on a PC withe Windows 8.1 and apps are up to date.  Thanks much for any help!!

    Hi Bryan,
    My video i have successfully worked on for seven days now won't open at all.  It says there is no sequence of this type found... But in the very bottom bar I can see the whole project load.  But the only option from the error screen is exit out of Premiere Pro CC.  I am on a PC withe Windows 8.1 and apps are up to date.  Thanks much for any help!!
    Sounds like an activation issue. Quite Premiere Pro. Sign out of Creative Cloud. Restart Premiere Pro. Sign back in: http://bit.ly/CC-sign-out
    Hope that works for you.
    Kevin

  • My daq 6008 wil not drop the 5V after the VI is stopped, i have a digital signal going from the error out on the daq in the while loop to the error in on the daq outside the while loop and a boolean going to the data of the daq outside

    my daq 6008 wil not drop the 5V on a digital output after the VI is stopped, i have a digital signal going from the error out on the daq in the while loop to the error in on the daq outside the while loop and a boolean going to the data of the daq outside, but i can t seemto get it to work

    i attached the block diagram so you can have a look
    Attachments:
    PID Temp control.docx ‏120 KB

  • X mountain lion causing my display setting to be very low after tab out from a full screen application like game. anyone encountered the similar thing?

    whenever i tab out from a full screen then the display setting will auto change with a blue flash screen.

    Your issue could be caused by many things however I'm pretty certain it has nothing to do with OS X being faulty. OS X is not like Windows that requires a re-install whenever issues present themselves. You need to be methodical in checking where your issue lies. There are numerous articles available that go over causes, I'd suggest looking through the X-Lab article listed below and then methodically going through each step until you discover the cause.
    http://www.thexlab.com/faqs/performance.html
    If you still can't find it then you should work with an AASP to locate where your issue lies.

  • IMAC freezing, hang during startup, loud noise coming out from the speaker

    I am using the iMAC i3 Intel based which i bought it just a month ago
    Last week it hang, freeze just like that without me launch any application just yet
    I hold the ON button for a restart, and it freeze during the startup
    One more thing, sometimes when it freeze, there's a noise coming out from the speaker ( just like there is no signal from the TV )
    Already sent it to the Apple Service Center but they tell me it is free from any error, but by the time i bring it back home, not even 12 hours, it freeze again just like that with loud noises coming out from the speaker.
    Btw did i mention, sometimes there's also a screen distortion
    Please somebody help me

    I've experienced similar symptoms to the original poster's description. I have an iMac 27" 2010 model. This may be related to the following:
    I've looked on numerous forums regarding the freezing problem I was having. This problem would arise on a wide range of systems.
    Symptoms included but were not all always present - usually when I am loading the system with games/heavy load processes:
    - Full system freeze, screen still on.
    - Loud cracking noise coming from speakers (relative to what volume was at when the freeze happened).
    - Computer asleep but I cannot wake up unless hard reset with power button.
    - My screen backlight was also damaged (permanently dimmed) near the left side, and progressively got worse over time. This was fixed (replaced LCD 27" display $600+ and covered by my creditcard extended warranty)
    Basically, what I've come to realize which has not been well documented as far as I could find relating to this problem - is that the system is overheating and causing these freezing errors (and LCD damage in my case). Prologned occurances could result in different system part failures.
    How do you fix the overheating problem? Give this a try, it's worked so far for me and I've actually been able to continue video/photo editing without having this annoying freeze.
    Search for and download 'iStat Pro' (widget addon that lets you monitor your system temperatures... compare it before and after the fix)
    Search for and download 'SMCFanControl (a great little app that allows you to change your system fan speeds) - I did not know this was possible, and have never heard the fans go this high when it was being run automatically by the system. The fan's are obviously louder when set to max, but is well worth the system cooling results.

  • Find out from the machine name, what user is logged in

    thank you. Is there a way to find out from the machine name, what user is logged in or who the machine belongs to?
    I can actually find out from the username what machine they have because there is a field called the wWWHomePage that gets populated with the computer name
    how do I do that? 
    Also I have a list of email addresses. How do I find the username from the list of email addresses ?
    thanks

    I have no good way to test this, so you'll probably have to adjust this on your end:
    Get-Content .\users.txt | ForEach {
    $emailAddr = $_
    $props = @{
    EmailAddress = $emailAddr
    Username = ''
    ComputerName = ''
    ComputerPath = ''
    try {
    $userDetails = Get-ADUser -Filter "EmailAddress -eq '$emailAddr'" -Properties wWWHomePage -ErrorAction Stop
    $pcDetails = Get-ADComputer -Identity $userDetails.wWWHomePage -Properties CanonicalName -ErrorAction Stop
    $props.Username = $userDetails.SamAccountName
    $props.ComputerName = $userDetails.wWWHomePage
    $props.ComputerPath = $pcDetails.CanonicalName
    } catch {
    $props.Username = 'ERROR'
    $props.ComputerName = 'ERROR'
    $props.ComputerPath = 'ERROR'
    New-Object PsObject -Property $props
    } | Select EmailAddress,Username,ComputerName,ComputerPath
    Don't retire TechNet! -
    (Don't give up yet - 12,950+ strong and growing)

  • I have an Ipod touch 2nd generation 8gb. Metal peice fell out from the inside where the home button is and I lost it. Put the screen plug in and put the screen on and it would turn on but it won't unlock or respond to anything I try to do. PLEASE HELP ME!

    I have an Ipod touch 2nd generation 8gb. Metal peice fell out from the inside where the home button is and I lost it. Put the screen plug in and put the screen on and it would turn on but it won't unlock or respond to anything I try to do. PLEASE HELP ME!!!!!!!!!!!!!!!!!!!

    Look her and it may give insite on what is missing. Otherwise:
    Apple will exchange your iPod for a refurbished one for $99. Likely not worth it for a your iPod. They do not fix yours.
    Apple - iPod Repair price              
    A third-party place like the following maybe less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    Repair it yourself if you are up to it
    iPod Touch Repair – iFixit

  • How to determine if coming from the Error Page?

    Version 4.1.1.00.23
    Hello,
    I have a manually created tabbed form with a collection.
    I've added a validation and set the error message to display on the Error Page to preserve the information entered into the form.
    One of the Select Lists is a cascading list. That list does not populate when returning from the Error Page.  The parent list is populated and does show the value selected before the error was thrown. It's just the list that is based on the parent that isn't populated.
    If I refresh the page the Select Lists are reset and I can access the values normally.
    So, what I think I want to do (and I'm not sure here) is to refresh the page when returning from the Error Page.
    How can I determine if I'm coming back from the Error Page?
    Is there a better solution?
    Please let me know if this isn't clear or there are questions.
    Thanks,
    Joe

    Hello,
    I'm hoping someone can help me with this.
    Thanks,
    Joe

  • My "Develop" tab disappeared from the top ribbon

    My "Develop" tab disappeared from the top ribbon, how can I activate it again?
    Thank you in advance!

    Just goto the URL bar of your browser.  If your BC Partner site resides at mytestsite.com then goto your address bar in your browser and type http://mytestsite.com and then paste on the end "/AdminConsoleXT/#fileManager" so your whole URL will look like "http://mytestsite.com/AdminConsoleXT/#fileManager"  It's the URL to the Develop tab that you can use if it works until you get this sorted out.  If your tab disappeared I'm assuming it has to do with Roles/Permissions so make sure your Admin user account on the site in question has all the access/admin rights under Site Settings > User Roles  But the "/AdminConsoleXT/#fileManager" is part of the URL to access the developer tab.  Typically if you are logged in already, then just replace everything in the URL in the addressbar after your domain and paste "/AdminConsoleXT/#fileManager" and hit ENTER to goto the URL of the Develop tab.

  • Who worked with ICS' Model 4896 GPIB? I can not count the data from the module. Can prompt as it to make. It is desirable with examples (data read-out from the module and data transmission between channels. It is in advance grateful.

    I can not count the data from the module. Can prompt as it to make. It is desirable with examples (data read-out from the module and data transmission between channels. It is in advance grateful.

    Hello. Most of the engineers in developer exchange are more familiar
    with NI products. Contacting ICS for technical support is a better
    course of action.

  • How do I create a new row on tab out of the last column, last row?

    JDev 11.1.2.1.0.
    I've seen a few topics on this but none that I think were really very good solutions.
    Use Case:
    On tab out of the last column in the last row, a new row should be added to the end of the table. Bonus points for setting the focus to the first <af:inputText> of the newly created row.
    Complications:
    1. I'm having a heck of a time trying to find a function that returns the column's displayed index. Sadly, <column binding>.getDisplayIndex() returns -1 unless the user has manually re-ordered the column.
    2. Value Change Listeners only fire if there is a value change. Guess that means I need to do client/server listeners to check each and every <af:inputText> for a tab press?
    3. I'm not even going to get into setting the focus. With all the templates, regions, etc. going on, it's dang near impossible.
    Any ideas on how to attack this one?
    Will

    Hi,
    You will need to use the Run Engine Installation Wizard found on the Tools menu. In addition you need to create a installation set for the operator interface.
    Look at Chapter 16 Distrubuting TestStand ( chapter 17 for version 2).
    Once you have created your installation, install is on your new system.
    The serial number etc is part of the process model. When you run the entry point 'Test UUTs' the PreUUT callback is executed which asks the user for the serial number.
    Hope this helps
    Ray Farmer
    Regards
    Ray Farmer

  • When i burn a disk in Disk Utility, the burn completes but the verification process does not complete and my disk pops out. The error message i get is something like this "burn failed because disk cannot be verified," PLEASE HELP

    when i burn a disk in Disk Utility, the burn completes but the verification process does not complete and my disk pops out. The error message i get is something like this "burn failed because disk cannot be verified," PLEASE HELP.
    Also when i take the disk out it seems fine nd everything seems to be burned onto the disk. I am buring mac os x lion onto a disk.
    The disk i am using is nextech and i am burning at the slowest speed (4x).
    Also this is my 3rd time trying to do this and the verifying process keeps failing.... what do i do?

    see there
    http://www.techmixer.com/best-free-mac-burning-software-for-mac-osx/
    what you like most
    try different brand of CD/DVD

  • How can i get HD video out from the lumia 900. ? ...

    How can i get HD video out from the lumia 900. ? Is there some kind of gable. ? N8 has HD cable port..so where is lumia`s port. ?

    Download Zune and start it, when started connect your Lumia 900 and you can now transfer mediafiles from the Lumia to your PC through a USB connection. For Mac use the Mac connector.
    Press the 'Accept As Solution' icon if I have solved your problem, click on the Star Icon below if my advice has helped you!

  • There are electric charges coming out from the laptop when I touch it. It is just happened when the mac is connected to the power supply.

    There are electric charges coming out from the laptop when I touch it. It is just happened when the mac is connected to the power supply.

    http://reviews.cnet.com/8301-13727_7-57388858-263/ouch-my-mac-shocked-me/?tag=mn col;txt
    Best.

  • The bookmark tab went from the right side to the left side. I did not change that. what cause the change from the right side to the left side?

    The bookmark tab went from the right side to the left side. I did not change that. what cause the change from the right side to the left side? Also the the Mozilla Firefox tab on the upper left hand corner changed.
    Its was a red colored tab and now its blue in color. I did not change any thing!

    Hey jimmiet,
    There were some recent ui changes around the downloads manager. What version where you on before? Anyway, you can customize things in Firefox really easily. Take a look at [[Customize Firefox controls, buttons and toolbars|this article on customizing Firefox]] for details. Should be a piece of cake to move the bookmarks button.
    As for the color of the button, you might be in [[Private Browsing - Browse the web without saving information about the sites you visit|Private Browsing]] mode. That changes the color of the button from orange to a purplish color.
    Matt

Maybe you are looking for

  • When I try to convert a file I get no response.

    What am I doing wrong?  I have reset my password and tried several time to get a pdf converted to a doc.  I put in my email address and password then click on sign in and I get no response at all.

  • Flash Player Not There After Install

    I have installed Flash Player several times & it always says it was successful, but when I need it, it says I have to install it.  It's not listed in my Programs but it is showing up in the Control Panel under Programs that can be uninstalled.

  • Print jobs slow to leave Mac print queue

    Mac laptops running 10.5.6. IP printers added, using LPD with queue of lp. There is a Xerox WCP232, HP Laserjet Series 4/5 and another print queue on the systems. Several presets created as laptops are shared, each preset is configured for a secure p

  • ASN Segments

    Hi Gurrus, I need Segments names and if possible field names in the IDOC type SHPMNT02 for PO NUM, PO line Item, Material No., ASN Received, Expected Delivery both Date and Time, Aty in Shipment. I dont want inbound delivery to be created. Please hel

  • Oracle Text Context index keeps growing. Optimize seems not to be working

    Hi, In my application I needed to search through many varchar columns from differents tables. So I created a materialized view in which I concatenate those columns, since they exceed the 4000 characters I merged them concatenating the columns with th