Cursor invisible in JTextField

Hi,
I have tried disabling and making JTextField uneditable separately.
Text if navigable but the cursor is invisible. Any solution ?

Hi,
I have tried disabling and making JTextField uneditable separately.
Text if navigable but the cursor is invisible. Any solution ?

Similar Messages

  • Making the mouse cursor invisible.

    I am currently in the deployment phase of software made for two touchscreen kiosks.
    When moving the applications over to these kiosks I realized that we needed to make the mouse cursor invisible.
    I have tried the
    Cursor cursor = new Cursor();// ALthough i was unable to find a cursor constant that gave me an invisible pointer.
    testFrame.setCursor(cursor);
    Any ideas how I could remove the pointer from view alltogether?

    Toolkit tk = Toolkit.getDefaultToolkit();
    Image image = tk.getImage("yourPicture.gif");
    Cursor invisibleCursor = tk.createCustomCursor(image, new Point(0,0), "invisible cursor");I usually use a 1 x 1 transparent gif.

  • Exception when trying to make cursor invisible

    i don't want my application to display a window, so i'm creating a custom cursor from a 1X1 transparent image, and set the cursor to that... after trying that i get an exception...
    here's the code:
    try
                BufferedImage ec=new BufferedImage(1,1,BufferedImage.TYPE_INT_ARGB);
                Cursor cc=Toolkit.getDefaultToolkit().createCustomCursor(ec,
                        new Point(1,1),"");
                frame.setCursor(cc);
            catch(Exception e)
                System.out.println("Couldn't make cursor invisible: "+e.toString());
                e.printStackTrace();
            }and here's the exception:
    java.lang.IndexOutOfBoundsException: invalid hotSpot
         at sun.awt.CustomCursor.<init>(CustomCursor.java:61)
         at sun.awt.X11CustomCursor.<init>(X11CustomCursor.java:26)
         at sun.awt.X11.XCustomCursor.<init>(XCustomCursor.java:27)
         at sun.awt.X11.XToolkit.createCustomCursor(XToolkit.java:742)
         at no_germs.pong.Game.<init>(Game.java:101)
         at no_germs.pong.GameLauncher.<init>(GameLauncher.java:157)
         at no_germs.pong.GameLauncher.main(GameLauncher.java:87)
    what's my problem, and is there a way around it? if not, can i make the cursor invisible some other way?

    Image image = Toolkit.getDefaultToolkit().createImage(new MemoryImageSource(16, 16, new int[16 * 16], 0, 16));
    Cursor transparentCursor = Toolkit.getDefaultToolkit().createCustomCursor(image, new Point(0, 0), "transparentCursor");
    frame.setCursor(transparentCursor);

  • Cursor becomes invisible in JTextField after using default button

    In my application there is an update screen (JPanel). I am using default button in that panel. The input field is a normal JTextField. When the update is over the cursor goes back to the input JTextField.
         Now my problem is that when I carry out update with mouse, the cursor is correctly placed into the input JTextField and is visible after the update is over. On the other hand, if I carry out the same update operation using default button (using keyboard), the cursor gets placed correctly in the input JTextfield column, but becomes invisible. If I minimize and then again maximize the window, the cursor appears back. What am I missing ? Note that I am using component.requestFocusInWindow() to get focus back to the input JTextField.
    regards,
    nirvan

    While trying to reproduce the behaviour for SSCCE, I found that it is the JOptionPane.showMessageDialog() that is causing the problem. Here is the SSCCE.
    package com.ns;
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.Toolkit;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import javax.swing.JTextField;
    import javax.swing.WindowConstants;
    public class TestFocus extends javax.swing.JFrame {
        // Variables declaration - do not modify
        private JTextField field1;
        private JTextField field2;
        private JPanel jPanel1;
        private JButton reset;
        private JButton update;
        // End of variables declaration
        public TestFocus() {
            initComponents();
            setDefaultButton();
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {
            jPanel1 = new JPanel();
            field1 = new JTextField();
            field2 = new JTextField();
            update = new JButton();
            reset = new JButton();
            setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
            field1.setPreferredSize(new Dimension(40, 20));
            jPanel1.add(field1);
            field2.setPreferredSize(new Dimension(40, 20));
            jPanel1.add(field2);
            update.setText("Update");
            update.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent evt) {
                    updateActionPerformed(evt);
            jPanel1.add(update);
            reset.setText("Reset");
            reset.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent evt) {
                    resetActionPerformed(evt);
            jPanel1.add(reset);
            getContentPane().add(jPanel1, BorderLayout.CENTER);
            Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
            setBounds((screenSize.width-385)/2, (screenSize.height-258)/2, 385, 258);
        }// </editor-fold>
        public void setDefaultButton(){
            this.getRootPane().setDefaultButton(update);
        private void updateActionPerformed(ActionEvent evt) {
            // TODO add your handling code here:
            JOptionPane.showMessageDialog(this,"Activity Updated Succesfully in Database.",
                                            "Information",
                                            JOptionPane.INFORMATION_MESSAGE);
            update.setEnabled(false);
            field1.setEditable(false);
            reset.setEnabled(true);
            this.getRootPane().setDefaultButton(reset);
        private void resetActionPerformed(ActionEvent evt) {
            // TODO add your handling code here:
            field1.requestFocusInWindow();
            field1.setText("");
            field1.setEditable(true);
            reset.setEnabled(false);
            update.setEnabled(true);
            this.getRootPane().setDefaultButton(update);
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new TestFocus().setVisible(true);
    }If I remove the JOptionPane.showMessageDialog() method, everything works fine with mouse as well as keyboard.
    regards,
    nirvan.

  • Mouse cursor invisible, but still functional

    So, I recently updated my system and after the next reboot, the cursor was gone.
    Okay, it was not that gone, it was just invisible, but I can use it right now as it was there.
    Unfortunately, it was not the smallest update, so I currently have no clue, which package may have caused this.
    Any ideas?
    Here's the log of the problematic update:
    [2013-09-30 17:10] [PACMAN] upgraded glib2 (2.36.4-1 -> 2.38.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded at-spi2-core (2.8.0-1 -> 2.10.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded atk (2.8.0-1 -> 2.10.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded at-spi2-atk (2.8.1-1 -> 2.10.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded dconf (0.16.1-1 -> 0.18.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded gdk-pixbuf2 (2.28.2-1 -> 2.30.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded gtk-update-icon-cache (2.24.20-1 -> 2.24.21-1)
    [2013-09-30 17:10] [PACMAN] upgraded pango (1.34.1-1 -> 1.36.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded gtk3 (3.8.4-1 -> 3.10.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded gsettings-desktop-schemas (3.8.2-1 -> 3.10.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded baobab (3.8.2-1 -> 3.10-1)
    [2013-09-30 17:10] [PACMAN] upgraded cdparanoia (10.2-4 -> 10.2-5)
    [2013-09-30 17:10] [PACMAN] upgraded gstreamer (1.0.10-1 -> 1.2.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded gst-plugins-base-libs (1.0.10-1 -> 1.2.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded neon (0.29.6-4 -> 0.30.0-1)
    [2013-09-30 17:10] [PACMAN] installed libsrtp (15.1c9bd90-1)
    [2013-09-30 17:10] [PACMAN] upgraded gst-plugins-bad (1.0.10-1 -> 1.2.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded gst-plugins-base (1.0.10-1 -> 1.2.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded glib-networking (2.36.2-1 -> 2.38.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded libsoup (2.42.2-1 -> 2.44.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded gst-plugins-good (1.0.10-1 -> 1.2.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded cogl (1.14.0-5 -> 1.16.0-2)
    [2013-09-30 17:10] [PACMAN] upgraded json-glib (0.16.0-1 -> 0.16.2-1)
    [2013-09-30 17:10] [PACMAN] installed libevdev (0.4-2)
    [2013-09-30 17:10] [PACMAN] upgraded clutter (1.14.4-3 -> 1.16.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded clutter-gst (2.0.6-1 -> 2.0.8-1)
    [2013-09-30 17:10] [PACMAN] upgraded clutter-gtk (1.4.4-3 -> 1.4.4-4)
    [2013-09-30 17:10] [PACMAN] upgraded librsvg (1:2.37.0-1 -> 1:2.39.0-2)
    [2013-09-30 17:10] [PACMAN] upgraded gnome-desktop (1:3.8.4-1 -> 1:3.10.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded nautilus-sendto (3.8.0-2 -> 3.8.1-1)
    [2013-09-30 17:10] [PACMAN] upgraded cheese (3.8.3-1 -> 3.10.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded gobject-introspection (1.36.0-1 -> 1.38.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded gjs (1.36.1-2 -> 1.38.1-1)
    [2013-09-30 17:10] [PACMAN] upgraded libnotify (0.7.5-1 -> 0.7.6-1)
    [2013-09-30 17:10] [PACMAN] installed bluez (5.9-1)
    [2013-09-30 17:10] [PACMAN] upgraded gnome-bluetooth (3.8.1-2 -> 3.10.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded gnome-icon-theme-symbolic (3.8.3-1 -> 3.10.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded gnome-icon-theme (3.8.3-1 -> 3.10.0-1)
    [2013-09-30 17:10] [PACMAN] upgraded systemd (207-5 -> 207-6)
    [2013-09-30 17:10] [PACMAN] upgraded libgweather (3.8.2-1 -> 3.10.0-1)
    [2013-09-30 17:10] [PACMAN] installed geocode-glib (3.10.0-1)
    [2013-09-30 17:10] [PACMAN] installed geoclue2 (1.99.4-1)
    [2013-09-30 17:11] [PACMAN] upgraded gnome-settings-daemon (3.8.5-1 -> 3.10.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded gnome-session (3.8.4-1 -> 3.10.0-2)
    [2013-09-30 17:11] [PACMAN] upgraded gnome-themes-standard (3.8.4-1 -> 3.10.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded libgnome-keyring (3.8.0-1 -> 3.10.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded muffin (1.8.2-1 -> 1.8.2-2)
    [2013-09-30 17:11] [PACMAN] upgraded webkitgtk (2.0.4-1 -> 2.2.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded gnome-settings-daemon-compat (3.6.4-3 -> 3.6.4-4)
    [2013-09-30 17:11] [PACMAN] upgraded gnome-online-accounts (3.8.3-1 -> 3.10.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded evolution-data-server (3.8.5-1 -> 3.10.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded gnome-panel (3.8.0-1 -> 3.8.0-2)
    [2013-09-30 17:11] [PACMAN] upgraded cinnamon (1.8.8-5 -> 1.8.8-7)
    [2013-09-30 17:11] [PACMAN] upgraded network-manager-applet (0.9.8.4-1 -> 0.9.8.4-2)
    [2013-09-30 17:11] [PACMAN] upgraded cinnamon-control-center (1.8.2-2 -> 1.8.2-3)
    [2013-09-30 17:11] [PACMAN] upgraded gnome-screensaver (3.6.1-5 -> 3.6.1-6)
    [2013-09-30 17:11] [PACMAN] upgraded cinnamon-screensaver (1.8.0-2 -> 1.8.0-3)
    [2013-09-30 17:11] [PACMAN] upgraded device-mapper (2.02.100-1 -> 2.02.102-1)
    [2013-09-30 17:11] [PACMAN] upgraded popt (1.16-6 -> 1.16-7)
    [2013-09-30 17:11] [PACMAN] upgraded cryptsetup (1.6.2-1 -> 1.6.2-2)
    [2013-09-30 17:11] [PACMAN] upgraded dialog (1.2_20130923-1 -> 1.2_20130928-1)
    [2013-09-30 17:11] [PACMAN] upgraded libpeas (1.8.1-1 -> 1.9.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded eog (3.8.2-1 -> 3.10.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded gcr (3.8.2-1 -> 3.10.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded gtksourceview3 (3.8.2-1 -> 3.10.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded python-cairo (1.10.0-2 -> 1.10.0-3)
    [2013-09-30 17:11] [PACMAN] upgraded pygobject-devel (3.8.3-1 -> 3.10.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded python-gobject (3.8.3-1 -> 3.10.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded gedit (3.8.3-1 -> 3.10.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded glibmm (2.36.2-1 -> 2.37.93-1)
    [2013-09-30 17:11] [PACMAN] upgraded gnome-screenshot (3.8.3-1 -> 3.10.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded gnome-terminal (3.8.4-1 -> 3.10.0-2)
    [2013-09-30 17:11] [PACMAN] upgraded gtk2 (2.24.20-1 -> 2.24.21-1)
    [2013-09-30 17:11] [PACMAN] upgraded gvfs (1.16.3-2 -> 1.18.1-1)
    [2013-09-30 17:11] [PACMAN] upgraded gvfs-smb (1.16.3-2 -> 1.18.1-1)
    [2013-09-30 17:11] [PACMAN] installed s-nail (14.4.2-2)
    [2013-09-30 17:11] [PACMAN] upgraded libgee (0.10.4-1 -> 0.12.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded libsasl (2.1.26-4 -> 2.1.26-6)
    [2013-09-30 17:11] [PACMAN] upgraded libtracker-sparql (0.16.2-1 -> 0.16.2-2)
    [2013-09-30 17:11] [PACMAN] upgraded lvm2 (2.02.100-1 -> 2.02.102-1)
    [2013-09-30 17:11] [PACMAN] upgraded mtdev (1.1.3-1 -> 1.1.4-1)
    [2013-09-30 17:11] [PACMAN] upgraded nemo (1.8.5-1 -> 1.8.5-2)
    [2013-09-30 17:11] [PACMAN] upgraded p11-kit (0.18.4-1 -> 0.20.1-1)
    [2013-09-30 17:11] [PACMAN] upgraded pambase (20130821-1 -> 20130928-1)
    [2013-09-30 17:11] [PACMAN] upgraded python2-gobject (3.8.3-1 -> 3.10.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded python2-atspi (2.8.0-1 -> 2.10.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded rsync (3.0.9-6 -> 3.1.0-1)
    [2013-09-30 17:11] [PACMAN] upgraded systemd-sysvcompat (207-5 -> 207-6)
    [2013-09-30 17:11] [PACMAN] upgraded wget (1.14-2 -> 1.14-3)
    Last edited by WolleTD (2013-10-02 08:29:03)

    This happened to me as well, several weeks, maybe even months ago. In my case, it seemed to coincide with installing cinnamon. Is cinnamon something you installed recently, by any chance? At any rate, I ended up having issues in cinnamon as well, and I wonder if running both DE's side-by-side potentially causes issues. For instance, I noticed that some settings in tweak-tool in gnome carried over to cinnamon. They share a lot of core apps and maybe it has something to do with config files...?? I eventually just made a list of apps I wanted to keep and did a fresh install using my existing home partition and deleted any config files I didn't want. I really needed to do that anyway. I now have KDE and Gnome. KDE is as buggy is ever, but gnome does seem to be behaving itself this time around. Sorry I don't have any better suggestions.
    Last edited by nicklej (2013-10-02 12:33:50)

  • Starting an applet with the cursor in a JTextField

    I want the cursor to be flashing in a JTextField when an applet has started. I've tried textField.requestFocus ( ) and textField.grabFocus ( ) with no success. Using J2SDK ver 1.4. Please help!

    Add a ComponentListener to the applet and put the textField.requestFocus() call in the componentShown() method.

  • Position the cursor in a JTextField

    Hi !
    I have an App with 10 JTextFields and I want to position the cursor from JTextField No.2 to JTextField No.8
    Is there a possibility to tell the program that the cursor have to go to an other Component ?
    Thank you. Wolfgang (KLD)

    You'll want to check out
    "grabFocus" in javax.swing.JComponent
    For some additional niceties you may want to check out
    "setFocusAccelerator" in javax.swing.text.JTextComponent
    It provides automated ways to jump around components.
    H

  • I Beam Cursor Invisible.

    Does anyone know why the I Beam Cursor is sometimes missing or invisible in a document or on a web page.
    This behaviour is since Snow Leopard installation.
    Thanks
    AK

    Originally posted by: kjones.leapfrog.com
    I've determined that my carat becomes visible again if
    I disable "Highlight current line".
    That works for me. But it does look like there's a bug.
    Cheers,
    KC

  • Making a cursor invisible?

    Does any one know how i can make my cursor turn transparent while I am running a labview program? I'm finding it rather obtrusive to have my mouse visible at all times during the program when it doesnt need to be
    "There will be water if God wills it"

    smercurio_fc wrote:
    I think making the cursor transparent is a BAD idea. What happens if your program crashes? Now you can't see the cursor. If it's obtrusive, then move the cursor off to the side. You can do this programmatically if you need to.
    Not only that but the mouse will probably still be functional. If you don't know where the cursor is and click then who knows what will happen.
    =====================
    LabVIEW 2012

  • Cursor invisible

    I'm in the process of setting up ArchLinux on my new laptop, an ASUS A6Km. But I've got a rather strange problem.
    After I installed slim (Simple Login Manager) to boot in init 5, my cursor disappears. I can still use it, I just can't see it.
    But it's visable in urxvt and opera (which uses qt) but not in any gtk-apps, the rootwindow or any windowframe.
    I'm using Xorg7, my wm is WindowLabs.
    I havn't any clue what's wrong, anyone have any clue?

    This happened to me as well, several weeks, maybe even months ago. In my case, it seemed to coincide with installing cinnamon. Is cinnamon something you installed recently, by any chance? At any rate, I ended up having issues in cinnamon as well, and I wonder if running both DE's side-by-side potentially causes issues. For instance, I noticed that some settings in tweak-tool in gnome carried over to cinnamon. They share a lot of core apps and maybe it has something to do with config files...?? I eventually just made a list of apps I wanted to keep and did a fresh install using my existing home partition and deleted any config files I didn't want. I really needed to do that anyway. I now have KDE and Gnome. KDE is as buggy is ever, but gnome does seem to be behaving itself this time around. Sorry I don't have any better suggestions.
    Last edited by nicklej (2013-10-02 12:33:50)

  • Set the cursor in a JTextField

    Hi! I have a Jdialog box, and I would like to set the cursor in the 2nd TextField that I have in the dialog box. I have tried RequestFocus(), but it doesn't work. Do you have an idea about this? Thank you a lot !

    try this after the JDialog is visible.
    dlgTest.setVisible(true);
    txtBox2.requestFocus();

  • Invisible Cursor

    Is there anybody that knows how to make the mouse cursor invisible either always or when it's in the field of my program?

    Don't know for sure, but I would start with the Component.setCursor() method. I don't see an "invisible" cursor in the Cursor class, but there is a Toolkit.createCustomCursor() method that you might look at.

  • How to 'warp' the cursor through cli

    As the topic states, I was wondering if there was a way to warp the position of the cursor on the X screen to the corner (kind of like the ratpoison window-manager's "banish"). The only way I do it now is just by moving the cursor manually with my touchpad to the bottom right corner and then disabling it (via touchpad 'disable' button). I was just curious if there was a way to do this with the command-line, such as sending a signal to a certain program or library or something. I searched the forums and couldn't find anything as "cursor warp mouse, etc" were vague. But a Google search revealed something about doing
    You can instead use a custom cursor which is invisible.
    In Unix, save the following as none.cur:
    #define none_width 1
    #define none_height 1
    #define none_x_hot 0
    #define none_y_hot 0
    static unsigned char none_bits[] = {
    0x00};
    Then use:
    proc show_cursor {} { .c conf -cursor "" }
    proc hide_cursor {} { .c conf -cursor "@path_to_cursor/none.cur black" }
    This is supposed to make the cursor invisible and then reveal it again (could be keybound, I guess) but I can't seem to get it to work. Any tips on warping it to the corner or making it completely disappear/reappear are appreciated, thanks.

    Peasantoid wrote:
    To move the cursor, you'd do:
    xdotool mousemove $x $y
    where $x is the width of your screen and $y is the height.
    Oh, neat. I didn't even have that installed. Did so, and it works like a charm! Thanks, much.
    Peasantoid wrote:
    Disabling touchpad:
    synclient -s TouchpadOff=1
    (if you have a Synaptics touchpad)
    Well, I tried this from the command-line and it says:
    %: synclient -s TouchpadOff=1
    Can't access shared memory area. SHMConfig disabled?
    %: sudo synclient -s TouchpadOff=1
    Can't access shared memory area. SHMConfig disabled?
    So I went to http://embraceubuntu.com/2006/03/24/dis … -touchpad/ and did as stated, adding the xorg.conf entry, etc, then restarted X and it still says the thing about SHMConfig disabled.  Not a big deal, I can always just press the little button on my laptop anyway; just like mapping the command to another key. Still, I'm wondering why it wont work.
    @Procyon: Thanks! I was wondering about that. I'm on a laptop so I won't need the multi-monitor thing, not just yet anyway.

  • Cursor in swing

    I am very new to swing, and have gone thru the swing tutorial looking for how to make the cursor invisible, and I just cant seem to find it.
    Can someone help me out? I have a textarea and I want no blinking cursor in the area.
    THANKS
    John McDonald

    THANKS.... that did if for me.... I appreciate the help
    textField.addFocusListener( new FocusAdapter()
         public void focusGained(FocusEvent e)
              textField.getCaret().setVisible(false);

  • Cursor at Textfield?

    Please kindly advise me on: how can I set the Cursor inside the JTextField whenever I call a repaint() or at the startup, so that I do not need to use a mouse or tab key to click on the Jtextbox whenever I need to key in data?
    By the way, I had tried requestFocus() but to no avail.
    Thanks alot.

    Hi!
    For your window or dialog add a WindowListener and in the windowOpened() event do textField.requestFocus(). This will do the job.
    Regards
    Jaydeep

Maybe you are looking for

  • How to use alternative sql statements in ejb 2.0

    hi i have written the alternative sql statement in persistence.xml like  "select max(modifieddate) from tmp_dlv_mgmt". i am getting the error java.rmi.RemoteException: com.sap.engine.services.ejb.exceptions.BaseRemoteException: Exception in method in

  • Problem with cache refresh entity bean / server node

    Hello, ive got a big problem and not found answer in sdn until now. Ive got a job that gets data from maxdb by sapjob - jco - session bean - entity bean - database. this job works daily. the data to work with is written directly to database from exte

  • Warranty Process

    Hi, I want to configure warranty, that is if my material is defective within a specific warranty date, i will be able to swap the material with a new material free of cost. Is there any standard fuctionality in SAP to configure this. If it is there w

  • Import Duties to Inventorise

    Dear All, I want to keep provision to inventorise CVD, ECESS, SECESS some of the times. So i have created ZCV1, ZECV, Z1CV conditions. My Import Pricing Procedure is ZIMPOR. We are using TAXINN Procedures. I have maintained the above conditions in Cl

  • Z77-GD55 not posting after Win8 Update

    Hi folks, i´m in need of help as i am done with my knowledge here. After i updated my PC to Win8  it sometimes didn´t boot up. After 4x-8x restarting unplugging etc it went back to working normal. Today it got stuck in a boot loop. Before the update