Scroll mouse not working in Oracle Applications!

Hi All
In most of the windows and forms, if not all, the scroll mouse doesn't works. I mean the scroll wheel doesn't works. Do we have to configure it?
How to do this?
Regards
Rahman

It would work only if you have the following:
- Forms 10.1.2.2 (Or above)
- Sun JRE 1.4.x (Or above)
Btw, it works in Forms 4.5 - 6i client-server (Using specific mouse drivers)

Similar Messages

  • Mouse not working in open applications

    Mouse not working properly on menu bar in certain applications: Text Edit, Calendar, Notes.  You can hover over the  red X but it will not close the application.  Also unable to click on a text form and drop the cursor in to edit or copy text.  Can open preference box but uanable to navigate because mouse will not click.  Have to now use keyboard to open and close most applications.  Virus?  Setting that got magically turned on?  Have powered down, checked batteries, etc.

    This is not due to a virus, or any other kind of malware.
    First, is this a wired mouse or a Bluetooth mouse? If it's a Bluetooth mouse, try changing the batteries, even if they should be fully charged.
    Have you tried a different mouse? If not, try that. Borrow one from a friend or buy a cheap wired mouse and see if that makes a difference.
    If the problem affects all mice, try restarting in safe mode. Does the problem happen while in that mode? If not, and if it comes back when you restart normally, then you have some kind of third-party software that is causing the problem. The trick will be figuring out what it is.

  • Client-cert auth impl in web.xml does not work in Oracle Application Server

    Hi,
    I am new to implementing security features on the web applications.. I have developed a new web service using jdev1012 and deployed in OAS 10.1.2. Its working fine according to the business requirements, but I am in need of implementing client-cert authentication to enable the web service available to only those who have client certificate.
    My server details are:
    Oracle Application Server 10g Release 2 (10.1.2)
    Server certificate is in place and SSL mode have been already enabled.. able to access my web service through https://<mydomain.com>/myws/TreqWS as well able to see the WSDL file through https://<mydomain.com>/myws/TreqWS?WSDL.
    I tried to include the following in my web.xml file as part of implementing CLIENT-CERT authentication.
    <security-constraint>
    <display-name>SecurityConstraint</display-name>
    <web-resource-collection>
    <web-resource-name>WSCollection</web-resource-name>
    <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <user-data-constraint>
    <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    <login-config>
    <auth-method>CLIENT-CERT</auth-method>
    <realm-name>WSCollection</realm-name> <!-- am not sure about this realm-name and its purpose -->
    </login-config>
    It is not woking as expected, though I have restarted my oc4j container after including this content to the web.xml file. i.e, I am able to invoke the web service though my sample java client program, though I donot have client certificate/keystore.
    I believe I am missing something..Can anyone help me in this regard to implement CLIENT-CERT authentication successfully?
    Thanks,
    Ms

    I am having the same problem with doc and xsl. I have added this
    <mime-mapping>
    <extension>xls</extension>
    <mime-type>application/vnd.ms-excel</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>doc</extension>
    <mime-type>application/msword</mime-type>
    </mime-mapping>
    to my web.xml. I even restarted the server. I still see doc and xsl in binary.
    Is there some other setting that needs to take place?
    I am using WL6.1 with fixpack 1.
    I can see the doc and excel files in the browser if I don't go through the weblogic
    server. That just confirms it's not my browser.
    Kumar Allamraju <[email protected]> wrote:
    <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
    <html>
    It works fine for me in 6.1 SP1.
    <br><br>
    If the following doesn't work , can you
    <br>try application/winword instead of application/msword?
    <p>--
    <br>Kumar
    <p>Siming Mu wrote:
    <blockquote TYPE=CITE>Hi,
    <p>I setup in my web.xml a mime mapping as follows,
    <p><mime-mapping>
    <br><extension>doc</extension><mime-type>application/msword</mime-type>
    <br></mime-mapping>
    <p>When I specify a test.doc url, the doc file appears in my browser
    as
    binary data
    <br>instead of download.
    <p>Please reference change request 055002, which decribes this problem. 
    According
    <br>to edocs, it has been fixed in wls6.1sp1.
    <p>But I am seeing it fixed.  Am I doing anything wrong? Thanks.
    <p>Siming</blockquote>
    </html>

  • Inland touch scroll mouse not working in MacBook pro 13.3. System profiler show xhc tec under USB. This mouse working well at PC.

    System- OS X lion 10.7.4
    MacBook pro early 2011
    mouse- inland smard touch scroll mouse.
    Please help me.

    Hello, friends!
    Did you find any solution? I have some problem, maybe you can to help me.
    Best Regards, Vadim!

  • Runtime.exec()  in Java not working in Oracle 10 Application Server

    Hi ,
    I am trying to call a .exe file which is in the Web Application folder .
    I am Using Process p = Runtime.exec("path to .exe file ")
    This code is working fine when used with JBOSS , but not working with Oracle Application server .
    Please tell me whether i need to do any chnages to make it work
    Thanks in advance .

    I ran a quick test with your code, I just had to make some small changes, and things work for me...
    I'm testing with JDeveloper 10g 10.1.3.2.0 ...
    The only thing I wonder is DBUser DBPass DBHost, those are not the actual values, correct?, neither they are environment variables?...
    In the server hosting your OAS, you should try running the whole CMD line from the start/run dialog ... make sure it works in that server ...
    Here is the code used in my test:
    In JSP:
      <%@ page import="runexepkg.*" %>
      <% 
      String msg = "";
      try
      RunEXE p = new RunEXE();
      msg = p.main1();
      catch(Throwable t)
         System.out.println("Exception Raised");
         t.printStackTrace();
      %>
      <%= msg %>In Java Class:
    package runexepkg;
    import java.sql.*;
    public class RunEXE
        String ss="";
        public String main1()
        try
            Runtime rt=Runtime.getRuntime();
            Process p = rt.exec("CMD /C start C:\\oraappserver\\j2ee\\WebGis\\applications\\PowerGis\\web\\WEB-INF\\classes\\GisProject\\cust_data_1.exe DBUser DBPass DBHost");
            System.out.println("Command has been executed");
            Class.forName("oracle.jdbc.driver.OracleDriver");
            Connection con = DriverManager.getConnection("jdbc:oracle:thin:@DBHost:DBPort:orcl","DBUser","DBPass");
            System.out.println("Test Connection ========== "+con);
            Statement st = con.createStatement();
            ResultSet rs = st.executeQuery("SELECT SYSDATE FROM DUAL");
            if(rs.next())
                ss="Command has been executed - Database has been accessed";
            else
                ss="Command has been executed - Database was not accessed";
        catch(Throwable t)
            System.out.println("Exception raised, command has NOT been executed");
            ss="Exception raised, command has NOT been executed";
            t.printStackTrace();
        return ss;
    }Edited by: Rodolfo Ferrari on Jul 23, 2009 10:40 PM

  • Horizontal Scroll does not work with Apple Magic Mouse

    Horizontal Scroll does not work with Apple Magic Mouse as it does with other Adobe software such as Photoshop.

    The system preferences window for the mouse has changed. The GUI elements are different.

  • Scroll wheel not working in Mavericks

    Update to OS X Mavericks resulted in mouse scroll wheel not working any more at all in any application.  Any suggestions for get scroll wheel function working would be appreciated.  Thanks!

    Just to understand the sequence: you have this problem when you are in a Firefox tab, click a link, and it opens in a:
    * new window
    * new tab
    * same tab
    I'm guessing a new window. Since the title bar area is a bit faded, some other window must have the focus, but which one?? If you press and hold the Alt key and press and release the Tab key, you should get the visual Task Switcher pane. The icon to the left of the current highlighted icon indicates the window that had the focus. If you then click that first icon, is it another Firefox window, or some other app?

  • Scrolling does not work in LR

    I've been frustrated by this for a while now. When in LR (currently on version 4.2, but same thing happens in earlier versions too), scrolling does nothing. If i'm trying to scroll up or down a panel, nothing happens.
    I'm on a Lenovo W701 running Win & 64bit. The scrolling does not work using either the track point or the touchpad.
    The work properly in all other applications.
    The pointer will change to an icon the represents scrolling while in LR, but nothing happens. Any thoughts or suggestions?
    If there is any other information that you might need, let me know.
    Thanks!
    Quinn

    What about a mouse? Does the wheel scroll?
    Sent from phone.

  • Image display control scrolling does not work properly when zoomed in

    I am using a ROI on an image in the image display control. When zooming into the image to fine-adjust the positioning of the ROI, the image scrolling does not work properly. As far as I understand, the image should scroll automatically when the ROI is leaving the visible area. However, the scrolling behaviour seems to depend on the origin of the Labview panel, not the origin of the image display control, which might require to move the ROI way out of the visible area before the scrolling takes place. In other words: the coordinate system of the image display control is shifted with respect to the true visible image area, depending on where you place it on the front panel. As a consequence, when clicking on a ROI which is in the visible area, but is outside of what Labview thinks is the visible area, it might immediately jump to the left border of the image, making the positioning of the ROI really difficult.
    Has anyone noticed this behaviour, and what would be a reliable solution to avoid this? 
    Dirk

    Hello,
    no, I am not talking about the tools palette. Just place an image control with some image in it on a new VI front panel. Then, use the rectangle from the tools and select a ROI in the image. If you zoom in (using the magnification glass), and then grab the ROI and move it around, the image scroll with the ROI. So far, so good. If you now place the image control elsewhere on the panel, or add new control above it, resize the panel, etc. , this scrolling when moving the ROI will not work correctly if the origin (0,0) of the panel is far away from the image control.
    I have attached a VI for simplicity (although there is hardly any code in it).
    If you make a ROI and try to move it down, you will notice that scrolling starts if you move the mouse out to about 10cms below the image (depens on your screen, of course). After that, if you click on the ROI, the scroll bars and ROI might jump up to the upper end of the image. Imagine how annoying this is if you try to finely adjust the ROI position. 
    I think it is a bug in the implementation of the image display control.
    Thanks,
    Dirk
    Attachments:
    scrolling.vi ‏818 KB

  • Mouse not working when reinstalling OS X with install disk

    I am trying to reinstall OS X 10.3 on iMAC G5 after a hard drive crash with the help of the original install disks, but my wireless mouse does not work anymore. Any ideas how I can solve this or go through the installation process with the keyboard alone? I couldn't find a keyboard shortcut to tab from a list in a window to the select button...

    How is your mouse not working? Is it dead?
    Is the wireless mouse a Mighty Mouse or a 3rd party mouse?
    Does you mouse need batteries?
    *Just in case it's dirty:*
    http://docs.info.apple.com/article.html?artnum=302417 How to clean your Mighty Mouse
    Take a piece of bright white paper, turn the mouse upside down on it, press down on the ball, and run the mouse quickly in circles over the paper. This will remove all the gunk that's building up on the ball
    TIP: To get to the gook inside the scroll nipple use a plastic toothpick.
    "Other Options:" Wear latex disposable gloves. A box of same can be purchased from your local Dollar Store or Pharmacy.
    Some cell phone leather cases actually fit right over the Mighty Mouse.
    Clean/wipe the Mighty Mouse off with a damp cloth/rag prior to going to bed each evening.
    Some users have found using the small alcohol pads quite successful. These can be obtained from any drug/pharmacy or Dollar Store.
    Only do the following if your warranty has run out:
    Cleaning inside and dismantling the Apple Mighty Mouse
    If so, then I suggest (if your 1 year warranty is not up and/or you have Apple Care Protecton Plan) you call Apple Tech Support & ask for a replacement.
    =========================
    Mighty Mouse Take Apart Photos

  • Triggers not working in Oracle 9iAS

    The form triggers are not working in oracle 9i AS.
    My Application server has Linux operating system with oracle form/report server installed. I am able to upload the form
    in the client machine (using Internet Explorer Win98 OS). Also i can feed in the data but none of my triggers are working (WHEN BUTTON PRESSED and other validation triggers).
    Can anyone suggest what to do pls.
    Tnks in advance
    Rgds
    Manoj Philip
    [email protected]

    Well we've tested on Linux and the trigger do work - I remember two other postings on this forumn from prople with the same problem:
    Re: SQL Developer Necessities
    Re: About  EXPLAIN PLAN table
    In one case the problem was not re-compiling using f90genm.sh, in the other it was something to do with the Machine setup but I don't know what the final resolution was.
    The only other thing is to make sure that you are on a certified linux release for using with iAS e.g. Redhat Server 2.1 and Suse Enterprise server 7 and Untited Linux
    You can check the current certifications on Metalink.oracle.com

  • Bluetooth mouse not working

    Bluetooth mouse not working.
    can click and scroll but pointer will not move.

    Hello:
    Try resetting the PRAM and SMC.
    Barry

  • Why does the scroll sometimes not work?

    I know this question has been posted before, but my problem is slightly different. I have synpatics touchpad with my laptop. Sometimes, the touchpad scrolling does not work, but my actual wireless mouse scrolling works. Sometimes my wireless mouse scrolling does not work, but my touchpad scrolling works. Why does this happen? The problem itself is not consistent.
    The scrolling usually stops suddenly. Scrolling works perfectly fine for a webpage, but then it stops working during the middle of my scrolling. This problem started to bug me.
    The problem still exists with Firefox reinstalled and without add-ons.

    Does this happen on another browser? (eg. Chrome, IE)

  • Two finger scrolling does not work on my MacBook (late 2008)

    Two finger scrolling does not work on my MacBook (late 2008) with either the notebook trackpad or a b/t conected magic trackpad.  Yes, I've set system preferences.  Suspect a driver or s/w problem.  Ideas?

    Saw another post that hinted that you need to go to accessibility settings:
    System Preferences > UniversalAccess > Mouse & Trackpad > Trackpad Options
    Enable scrolling (and I enabled dragging while I was at it and it worked.  Looks like wierd things can get set even if you don't mean it to.

  • Search function in Help not working in any application

    The Search function is not working in any application's Help. Upon entering the terms I need help for I get a hang at "Searching..." but never any result. This problem started sometime in the last year or so. Prior to that the search function in Help worked fine. My network connectivity is excellent.
    I recently reinstalled OS X 10.5 but I'm sure the problem existed before that and persisted after the reinstall.
    The reinstall was due to upgrading to 10.7 and only then finding that I had lost needed functionality, but I don't think this has anything to do with the current problem. All other aspects of Help seem to be working fine
    I don't find any reference to this problem anywhere so I'm hoping someone can help with my Help(!) problem. Thanks in advance.

    Try running your Leopard install disk again, as well as the 10.5.8 combo updater. This might reinstall any 'missing bits'.
    You can do this without deleting the hard drive, just install straight over your existing system, but close all applications and external devices first.
    Or you could also do this via an Archive and Instal:
    How to Archive & Install:
    http://support.apple.com/kb/HT1710
    and this also:
    http://support.apple.com/kb/HT2196?viewlocale=en_US
    This document explains how to correctly reinstall a prior version of Mac OS X in the event that other troubleshooting does not resolve an issue:
    http://docs.info.apple.com/article.html?artnum=25404
    BUT: Don't install older versions of Mac OS than what came with your computer:
    http://support.apple.com/kb/HT2186?viewlocale=en_US

Maybe you are looking for

  • Dev 6.0 forms server and 8i

    One server with NT 4.0 SP5 running Oracle 8i (8.1.5.0.5) and Dev 6.0 (6.0.5.32) installed in seperate oracle homes. I configured tnsnames correctly and created a very simple form that connects to the DB and displayes two fields. Form runs fine in cli

  • Activation of Batch Characteristics in Material Master

    Dear Gurus In Material Master the character values are in grey mode and not allowing to select.can anyone suggest how to activate this. other characters are in Blue colour. Thnk in Advance MK

  • Advantages of using "Exchange" account type

    I'm trying to determine the best way of using Mail in a predominantly Outlook/Exchange environment. I see that Mail has an "Exchange" account, and describes it as follows: An Exchange account allows you to connect to your Exchange server via IMAP, an

  • Status Check on Table of Contents

    My status checks work fine for all of my slides, except when I have my "Next" button jump to a slide later down the line.  For some reason I'm not getting a checkmark on the TOB for that particular slide.  Also, on that particular slide, the duration

  • Saving photos to iphoto

    I am unable to save phtos to iphoto.  I am getting an error message saying that safari is unable to communicate with iphoto.  Do I need to purchase the latest version of iPhoto?  I have recently upgraded to Lion and have encountered this problem sinc