Why the code in the UR disappear

Hi all,
Why the code in the UR disappear, i wrote a rutine in the UR to fill an Infoobject, but the rutine find from 0EMPLOYEE the comp code, but i need the value with Valid to 31.12.9999, when i write this in the rutine and press save, this disapear , its amazing but i dont know? help

make sure you are in change mode. Try activating the code after writing.

Similar Messages

  • Why the clock disappears when you recieve a call !!

    Dear iphoners,
    It is really strange why the clock disappears when you receive a call "during ringing" ..
    for me it is really matter to know the time just before I answer .. you can notice that when your phone is ringing , you can't see the time and you are stuck !!
    I'm sure some of you are sharing the same concern .. how can we send this to the developers to solve this issue !!
    just to let you feel my concern .. Imagine yourself sleeping and suddenly someone called you "your Boss", you just woke up and you have no idea what is the time .. its bad to answer and ask the caller what is the time !! .. and its annouing to wait till the phone stop ringing to check the time then you call back !!
    Please let me know if there is a way to solve this .. or at least let’s ask the developers to solve it
    Thanks,
    Muataz

    You can write to Apple about this issue using the feedback form:
    http://www.apple.com/feedback/iphone.html
    Cheers,
    Leann

  • Why the Text disappears when I rotate it using Free Transform Tool?

    Hi,
    My Text is visible before rotating it to verticle position using Free Transform Tool. But when once it is rotated to verticle position the text disappears from the Stage. And it is not an animated Text as well? What is the problem?
    Thanks.

    If the textfield is manually placed on the stage, you should be able to select the textfield and click the button for Embedding that is in the Properties panel.

  • Why is it that whenever I download a song from Itunes that a small grey round button appears next to the song (apparently this is the download progress button), but when I press on it to resume, the song disappears. This wasn't happening before.

    Why is it that whenever I download a song from itunes that a small grey button appears next to the song (apparently this is the download progress) but whenever I hit it to resume, the song disappears. I am getting annoyed with having to copy the songs manually onto my phone. Thanks for anyones help. Cheers

    If your country's iTunes Store allows you to redownload purchased tracks, I'd delete your current copies of the dodgy tracks and try redownloading fresh copies. For instructions, see the following document:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Otherwise, I'd report the problem to the iTunes Store.
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the items that are not playing properly. If you can't see "Report a Problem" next to the items, click the "Report a problem" button. Now click the "Report a Problem" links next to the items.

  • Why do the menus disappear?

    I am quite new to Java and I use project builder on my mac running OSX. Anyway I found some sample code and I was wondering if anybody could help me out. Basically when the app is compiled it draws "Hello World" in the window and there are two menus in the menubar -> 'File' and 'Edit', but when you go to the about box the menus disappear until you either close the aboutbox or bring the focus back to the main window.
    How can I always keep the menus showing when there are multiple windows in the app. Remember that mac menus are fixed to the top of the screen...
    anyway heres the code:
    import java.awt.*;
    import java.awt.event.*;
    import com.apple.mrj.*;
    import javax.swing.*;
    public class test extends JFrame
                          implements  ActionListener,
                                      MRJAboutHandler,
                                      MRJQuitHandler
        static final String message = "Hello World!";
        private Font font = new Font("serif", Font.ITALIC+Font.BOLD, 36);
        protected AboutBox aboutBox;
        // Declarations for menus
        static final JMenuBar mainMenuBar = new JMenuBar();
        static final JMenu fileMenu = new JMenu("File");
        protected JMenuItem miNew;
        protected JMenuItem miOpen;
        protected JMenuItem miClose;
        protected JMenuItem miSave;
        protected JMenuItem miSaveAs;
        static final JMenu editMenu = new JMenu("Edit");
        protected JMenuItem miUndo;
        protected JMenuItem miCut;
        protected JMenuItem miCopy;
        protected JMenuItem miPaste;
        protected JMenuItem miClear;
        protected JMenuItem miSelectAll;
        public void addFileMenuItems() {
            miNew = new JMenuItem ("New");
            miNew.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_N, java.awt.Event.META_MASK));
            fileMenu.add(miNew).setEnabled(true);
            miNew.addActionListener(this);
            miOpen = new JMenuItem ("Open...");
            miOpen.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_O, java.awt.Event.META_MASK));
            fileMenu.add(miOpen).setEnabled(true);
            miOpen.addActionListener(this);
            miClose = new JMenuItem ("Close");
            miClose.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_W, java.awt.Event.META_MASK));
            fileMenu.add(miClose).setEnabled(true);
            miClose.addActionListener(this);
            miSave = new JMenuItem ("Save");
            miSave.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_S, java.awt.Event.META_MASK));
            fileMenu.add(miSave).setEnabled(true);
            miSave.addActionListener(this);
            miSaveAs = new JMenuItem ("Save As...");
            fileMenu.add(miSaveAs).setEnabled(true);
            miSaveAs.addActionListener(this);
            mainMenuBar.add(fileMenu);
        public void addEditMenuItems() {
            miUndo = new JMenuItem("Undo");
            miUndo.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_Z, java.awt.Event.META_MASK));
            editMenu.add(miUndo).setEnabled(true);
            miUndo.addActionListener(this);
            editMenu.addSeparator();
            miCut = new JMenuItem("Cut");
            miCut.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_X, java.awt.Event.META_MASK));
            editMenu.add(miCut).setEnabled(true);
            miCut.addActionListener(this);
            miCopy = new JMenuItem("Copy");
            miCopy.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_C, java.awt.Event.META_MASK));
            editMenu.add(miCopy).setEnabled(true);
            miCopy.addActionListener(this);
            miPaste = new JMenuItem("Paste");
            miPaste.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_V, java.awt.Event.META_MASK));
            editMenu.add(miPaste).setEnabled(true);
            miPaste.addActionListener(this);
            miClear = new JMenuItem("Clear");
            editMenu.add(miClear).setEnabled(true);
            miClear.addActionListener(this);
            editMenu.addSeparator();
            miSelectAll = new JMenuItem("Select All");
            miSelectAll.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_A, java.awt.Event.META_MASK));
            editMenu.add(miSelectAll).setEnabled(true);
            miSelectAll.addActionListener(this);
            mainMenuBar.add(editMenu);
        public void addMenus() {
            addFileMenuItems();
            addEditMenuItems();
            setJMenuBar (mainMenuBar);
        public test() {
            super("test");
            this.getContentPane().setLayout(null);
            addMenus();
            aboutBox = new AboutBox();
            Toolkit.getDefaultToolkit();
            MRJApplicationUtils.registerAboutHandler(this);
            MRJApplicationUtils.registerQuitHandler(this);
            setVisible(true);
        public void paint(Graphics g) {
              super.paint(g);
            g.setColor(Color.blue);
            g.setFont (font);
            g.drawString(message, 40, 80);
        public void handleAbout() {
            aboutBox.setResizable(false);
            aboutBox.setVisible(true);
            aboutBox.show();
        public void handleQuit() {     
            System.exit(0);
        // ActionListener interface (for menus)
        public void actionPerformed(ActionEvent newEvent) {
            if (newEvent.getActionCommand().equals(miNew.getActionCommand())) doNew();
            else if (newEvent.getActionCommand().equals(miOpen.getActionCommand())) doOpen();
            else if (newEvent.getActionCommand().equals(miClose.getActionCommand())) doClose();
            else if (newEvent.getActionCommand().equals(miSave.getActionCommand())) doSave();
            else if (newEvent.getActionCommand().equals(miSaveAs.getActionCommand())) doSaveAs();
            else if (newEvent.getActionCommand().equals(miUndo.getActionCommand())) doUndo();
            else if (newEvent.getActionCommand().equals(miCut.getActionCommand())) doCut();
            else if (newEvent.getActionCommand().equals(miCopy.getActionCommand())) doCopy();
            else if (newEvent.getActionCommand().equals(miPaste.getActionCommand())) doPaste();
            else if (newEvent.getActionCommand().equals(miClear.getActionCommand())) doClear();
            else if (newEvent.getActionCommand().equals(miSelectAll.getActionCommand())) doSelectAll();
        public void doNew() {}
        public void doOpen() {}
        public void doClose() {}
        public void doSave() {}
        public void doSaveAs() {}
        public void doUndo() {}
        public void doCut() {}
        public void doCopy() {}
        public void doPaste() {}
        public void doClear() {}
        public void doSelectAll() {}
        public static void main(String args[]) {
            new test();
    }������������������������������������������
    and the coe of the aboutbox
    ������������������������������������������
    //     File:     AboutBox.java
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class AboutBox extends JFrame
                          implements ActionListener
        protected JButton okButton;
        protected JLabel aboutText;
        public AboutBox() {
         super();
            this.getContentPane().setLayout(new BorderLayout(15, 15));
            this.setFont(new Font ("SansSerif", Font.BOLD, 14));
            aboutText = new JLabel ("About test");
            JPanel textPanel = new JPanel(new FlowLayout(FlowLayout.CENTER, 15, 15));
            textPanel.add(aboutText);
            this.getContentPane().add (textPanel, BorderLayout.NORTH);
            okButton = new JButton("OK");
            JPanel buttonPanel = new JPanel(new FlowLayout(FlowLayout.CENTER, 15, 15));
            buttonPanel.add (okButton);
            okButton.addActionListener(this);
            this.getContentPane().add(buttonPanel, BorderLayout.SOUTH);
            this.pack();
        public void actionPerformed(ActionEvent newEvent) {
            setVisible(false);
    }thanks

    please anyone wanna help me?

  • Why is the sound disappearing when I send a video?

    I have an iPhone 5C.  When I record a video and send it, the sound disappears!  I can hear it just fine when I play the video back on my phone, but if I send the video to someone, they can't hear it.  Why is this happening?  I tested it by sending it to my email, and sure enough, the sound is gone!  Am I doing something wrong when I send it, or is there a setting that is off somewhere that I need to adjust?

    I can't even see where that setting is.. for my information all the footage is from a GoPro so what I've had to do is convert them to .mov and Apple ProRes 422 now. Now when I have them in final cut the samples in 'All Clips' and in the time line look ok in till I hover over them and then they have the red hint again, they do how ever export the right colour now but this is going to make colour correction difficult

  • Why do saved photos from the editor disappear?

    This doesn't happen every time, but often enough to be annoying.  After I edit a photo in Elements 8 Editor and save it, the photo disappears when I'm taken back to the Organizer.  I have found some of these photos in my Microsoft Photo Library and can bring them into the Organizer using "Get Photos and Videos by file name" in the Organizer's File menu.  But I can't figure out why they don't show up in the Organizer in the first place!  Any ideas?

    Nice try, but not quite everything I need.  This problem and another I wrote about earlier seem to be connected.  When I followed your instructions the edited photo didn't get lost, but the whole Version Set lost the Exif date of the original and both photos were dated today (and filed in the front of the Organizer).  When I tried "Save As" without creating a Version Set, I still lost the edited photo and had to retrieve it for Photoshop's Organizer from my Windows file.  I don't think I should have to choose between losing "ghost" photos or losing my Exif information.  In the Organizer's Properties, I made sure that the line about making a new date was not checked.  I looked in the Editor's Properties and found a line that says "Ignore Camera Exif information."  That is not checked.  Should it be?  Both of these problems began when I switched from Elements 6 in a Windows XP environment to Elements 8 in a Windows 7 environment.  Anybody else have a problem like this?

  • Why do playlist created on device disappear when the device is plug on a Pc

    Why do playlist created on the iPad disappears when we plug the iPad into a pc

    The iPad is mobile and the list is created as we go, are there any other options I.E to create from iPad instead

  • Why can't i save my WiFi password in my IPad? Every time i turne my iPad off the password disappear! Help please!!

    Why can't i save my WiFi password in my IPad? Every time i turne my iPad off the password disappear! Help please!!

    Create a new SSID and password for your router.

  • I have one iPad 3. But it is frequently hanging. More over the sound disappears. I have to restart the device to bring back the sound. Today I can't even restart as none of the icons are responding to touch. Why this is happening?

    I have one iPad 3. But it is frequently hanging. More over the sound disappears. I have to restart the device to bring back the sound. Today I can't even restart as none of the icons are responding to touch. Why this is happening?

    Try a reset: Simultaneously hold down the Home and On buttons until the device shuts down. Ignore the off slider if it appears. Once shut down is complete, if it doesn't restart on it own, turn the device back on using the On button. In some cases it also helps to double click the Home button and close all apps from the tray before doing the reset.

  • In Premiere Pro CC 2014, the image disappears when I apply a mask of an effect. Why?

    In Premiere Pro CC 2014, the image disappears when I apply a mask of an effect. Why?

    Nevermind...
    Fixe:
    projects setting > switch Renderer.
    Thanks

  • Why does the slider disappear every time I use it to move the window (Windows: FF 32.0)?

    Why does the slider disappear every time I use it to move the window (Windows: FF 32.0)? How do I get the slider back?

    Problem solved: I have been using Walnut for Firefox ver. 2.0.28 theme. For some reason this has been causing the problem. Started FF in Safe Mode, and the slider problem disappeared. Then proceeded to re-enable the Walnut theme: the problem reappeared. Disabled Walnut theme and reenabled all my other add-ons (about 6 of them). Still no problem. So, clearly there is a problem with the use of Walnut theme in FF ver. 32, at least on my Windows 7 installation.
    Thanks for all your suggestions and help. Good job, all!

  • Why the plant will disappear automatically after I input for a P/O?

    I input all the information for a purchase order.
    But after I input plant and then click 'enter', the plant disappears automatically.
    I checked the assignment of company code with plant and plant with material and so on. They all seems correct.
    Do you know what may be the root casue? I do not have any clue

    Yes, after I maintained the address of the plant, I can input it into the PO now.
    Thanks!

  • Why do items (folders) I place in the sidebar disappear overnight? Seriously, Yosemite?

    Why do items (folders) I place in the sidebar disappear overnight? Seriously, Yosemite?

    Do a backup.
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Select Library. Then go to Preferences/com.apple.finder.plist.  Move the .plist to your desktop.
    Re-launch Finder by restarting the computer and test. If it works okay, delete the plist from the desktop.
    If the same, return the .plist to where you got it  from, overwriting the newer one.
    Thanks to leonie for some information contained in this. 

  • When welcome page comes up I click edit, why does the page disappear?

    When the welcome page is on my screen and I click on edit, why does the page disappear and nothing comes up?

    I'm a little confused, what welcmoe page are you talking about? Can you provide a screenshot?
    Julia

Maybe you are looking for

  • Scheduling Agreement- ANY IDEAS FROM GURUS?

    Hai ALL,             I have a req- Customer will place order with pre-defined schedule for the next month ( including schedule dates & Qtty). When User creating Sch.Agreement-VA31, Enters Material in line item & Total Qtty ( total req for the next mo

  • Bluetooth Keyboard  - Some key don't work

    Hi friends, I have a 2011 (intel based) 27'' iMac with the bluetooth keyboard. I have two non working keys (control and 1). There's a way to repair it? My iMac doesn't have warranty and I would like to repair it. What can I do?? Note: I remove the ke

  • VA01- Custom field addition on item level (VBAP)

    Hello Guys, Requirement is to add custom field to Sales Order item level. I have appended a Z structure in VBAP table, and then added the fields in 8459 screen of SAPMV45A program in a frame. Now the frame created is visible, but not the fields (labe

  • Batch reports

    Hi Is there a way i can schdule list of reports to run at a specific time in bex? If i can do this, can i schedule work books too? Web i think its pre calculated web templates. Please throw some light on this. Thanks Basava K

  • Error when Settling AuC to a Cost Center

    HI All, Following err msg is occurring when i tried to settle an AuC to a cost center using the Tcode AIAB. 'Settlement of old asset data to a receiver type CTR is not allowed" In this asset there are line items belongs to current fiscal year as well