TAB key in program ABAP

Hi, experts.
I tried to change the sequence of an ABAP program, using the TAB key. But I have not found a way to modify the standard sequence. Has anyone done this before?
Thank you very much.

you cannot do that in ABAP...
you have to set your fields on screen according to the sequence

Similar Messages

  • Tab Key Restarts Program

    I have recorded an exercise to complete processes for software program. the exercise restarts when you press the Tab key clearing all progress within the exercise. 

    you cannot do that in ABAP...
    you have to set your fields on screen according to the sequence

  • How to translate the key words in ABAp program from lower case to upper cas

    How to translate the key words in ABAp program from lower case to upper case?

    Hi Kittu,
    You need to set the Pretty Printer settings to achieve key words in ABAP program from lower case to upper case.
    Utilities -> Settings -> Pretty Printer (tab) -> Select third radio button.
    Thats all.
    <b>Reward points if this helps.
    Manish</b>

  • Keyboard Control FAIL: Using TAB key on websites directs cursor to nowhere!!! Why?

    (using 2.3 GHz Intel Core i5 MAC MINI, OS X Lion 10.7.5)
    I have always felt safer using the keyboard rather than mouse-clicking on search fields etc. (Open Firefox, hit command+L to the URL I want to go to, then hop to next field with TAB key).
    Most notably frustrating example is with using Google, this has not worked right for some time. Say that you to start to search for something on google "main page" and then it goes to the search results page... You go to edit your search or type your next search and the cursor is flashing inside (but off center) of the search field and inputting text is not an option. Also you may instictively hit ESC (while in search field) when you are being given suggestions you don't want, and then the cursor moves again to this no-man's land in between fields.
    The other KEYBOARD control issue that I have found is this:
    Sometimes you cannot Close Window or even Quit Firefox with the usual keyboard shortcut. Usually when a few windows or tabs are open, or when there is some pop-up survey etc. on page. You can usually ALT+TAB to another open program and then back, and then you can close window or application. But that seems really sketchy to me! This happens all the time on major websites. You can go File-> Close Window or File->Quit, but when you use the same keyboard command the file menu just flashes with an "error tone."

    The TAB key thing was the same in safe mode. Actually I should add/correct, regarding that google search example: when the cursor is in "inbetween fields" positions, actually it lets you type at the END of the text that you had typed in the field (even though the cursor is blinking before the text). and if you "Command A" to replace the text in the search field while cursor in this position, it instead selects all the rest of the text OUTSIDE the field. Just doesn't make any sense. I think this happens with fields on Facebook as well.
    That first issue is just very annoying because it comes up every day and I never get used to it. I would be actually be curious to hear from someone whom this DOES NOT happen to.
    The 2nd issue I mentioned occurs more randomly, and seems more definately a Firefox issue. (When you can only close a window or quit from the drop down menu with the mouse, Command W and Command Q just give an error beep)

  • Firefox 3.6.11 does not respond on mouse, only Tab key and space bar

    HW: Lenovo R61i.
    OS: MS Win-XP PRO, ver 20002, SP3
    Internet Explorer is diabled in:
    Contol Panal|add/remove programs|add/remove windows components
    All other programs responds om USB mouse or the little joy-stick between G, H and B-keys.
    Removed FF, booted and reinstalled FF 3.6.11.
    Mouse works a couple of cliks - then Tab key and Space bar is the only tool.
    By the way - living in Norway, means No version og FF :)

    Getting very tired of this problem which is becoming much more frequent. I love the FF browser, but lately after I have been on line for a while, the browser stops responding to mouse clicks and I have to use the task manager to shut the program down and then reopen it to get it to work. From what I've been reading in the forums, this is not an uncommon problem. I've done all the recommended fixes and nothing works. Please fix this!!

  • Using the Tab Key in Simulations

    Hi, I am new to this forum and new to Captivate 5.
    I am creating online courses that teach people how to use our company's software programs so I use Captivate simulations often.  We use Captivate to record the simulations and then we use Articulate Presenter to create the course.
    Problem 1
    I still can't figure out how to use Tabs smoothly with Text Entry boxes all together. I've been reading all of the forum information and trying everything and the Tab won't work correctly for me.
    I have only placed one TEB on a slide but when I get to the second TEB on the next slide, I start typing the text and the system moves forward to the next action before I finish typing the text. Or, I have to press the Tab key twice to get to the next TEB on the next slide. I am totally confused.
    Problem 2
    I have been able to successfully create a simulation using the Enter key to validate text entry boxes.  I publish the simulation and use the swf file to create a web object that gets placed in Articulate. The web object holds the swf file and the html file below.
    Here is an example of the html file:
    This works just fine when I use the Enter key to validate text entry boxes. However, we decided to use the Tab key and now I have to deal with the seamless tabbing issues in Captivate. I figured out how to add the seemless tab info to the published file, Can I use the Captivate html file to create a web object? If so, how do I do that?
    Please help!!

    I have had success using TAB in Captivate 5.
    I learned:
    Dont put Text Entry Boxes on the timeline appearing at 0 seconds. Have them appear at 0.2. This gives it time to load.
    Make sure they are on the top layer.
    Appear for the duration of the slide, no transitions, and pause until the user clicks.
    I noticed if you type fast (as the learner) it kinda messes everything up. Add a distraction so you learner slows down on their typing speed.
    Also make sure you have the update installed. There were some bugs fixed in the TEB area.
    Good luck. email if you have any more questions.

  • KeyEvents with the TAB Key

    Hey All,
    I have a small progam with a small problem. My program is an applet with numerous textfields and I have implemented the KeyEvents event listener. What I want to have happened when I press the "Tab Key" is the cursor move from one tab to another, but when it goes to the next tab it clears out the text that is currently in the textfield. Take a look at my code segment that is giving me the problem.
    public void keyPressed(KeyEvent e)
    if(NameField == e.getSource())
              if(e.getKeyCode() == KeyEvent.VK_TAB)
                   SalaryField.setText(" ");
    I know that is works if I replace "VK_TAB" with something else like "VK_A". "NameField" and "SalaryField" are the names of mt textfields. I am currently using Java SDK 1.3.1 to program in java program, but my browser uses JVM/Runtime Enviornment 1.4.1. When I run it with my broswer nothing happens when I press tab and some for the program that I am using to progam in. I did a search in the forum and came up with I have above, but still cannot it to work. When I read APIs on 1.4.1 and 1.3.1 that both said that
    "Aside from those keys that are defined by the Java language (VK_ENTER, VK_BACK_SPACE, and VK_TAB), do not rely on the values of the VK_ constants. Sun reserves the right to change these values as needed to accomodate a wider range of keyboards in the future."
    What is going on? How can I solve this problem?
    Thanks,
    Iceman
    PS:
    My Interface is swing

    Hey All,
    Thanks for the help I got to work when I ran it with my programming program, but when I run it in a browser using the current JVM the tab key does not work. What is wrong now? Or how am I to use FocusListener now, I tried to use the getOppositeComponent(, my complier says that it is not a method of FocusListener. Even though java says in the docmentation that it is. Can I get some more help here. The questions again is How can I tab in a applet?
    Later,
    Iceman

  • Tab Key in Word not indenting lists!?

    So, all of a sudden when I create a list in Word the Tab key and the Shift + Tab key combo no longer indent/dedent items in a list.
    I've tried:
    - Both of the "Full Keyboard Access" modes in Keyboard and Mouse. Not like this should effect what goes on in Word, but gave it a shot.
    - Resetting the PRAM (doing command + option + p + r)
    Note This works normally in other accounts on the system. Only on my account is the tab key behaving this way.
    Anything else I should attempt?

    you cannot do that in ABAP...
    you have to set your fields on screen according to the sequence

  • Tab key in the ActiveX AcroPDF crashes application

    Hello everybody,
    I wonder whether any of you had this problem working with an ActiveX which displays a PDF file.  This is the situation:
     -  I've designed a VI which displays a pdf file in the ActiveX container (see attached) using LabVIEW 2009 Proffessional SP1.  I'm running in Windows XP, and I've got installed Adobe Reader 8.
     - When running this VI using LabVIEW, everything works fine.
     - I've build an executable, which works perfect in the computer where LabVIEW is installed.
    Now, I try to execute the same executable in a clean computer which has installed Adobe Reader 9 and LabVIEW Run-Time 9.  It seems to work fine, and the pdf is perfectly displayed, with all the Adobe options working well.  But the problem shows when pressing the "Tab" key.  The executable crashes with the typical windows screen which says that an error has been detected and that the program will be closed.  And that is what happens.  The application is closed suddenly,
    I remember to have seen few months ago a post with the same issue.  A bug in LabVIEW 8.5 would be the reason and I thought that the problem would dissapeared when getting the LabVIEW 2009.  But as far as I can see, it didn't, and I cannot find this post again.
    Thanks in advance for any help you might give me, and if you need further details of the VI or versions used, just let me know.  I hope somebody came accross with this issue before and can give me a hand.
    Regards,
    Dani
    Attachments:
    Loading pdf.JPG ‏24 KB

    Well, that seems like a definite LabVIEW bug to me.  I just reproduced it (NOT as an executable) with a simple self-contained program.  I've attached a code snippet below.  While it is running I pressed the Tab several times.  Eventually it locks up and closes LV without any notice at all.  It's a very repeatable crash, for what that's worth.
    Greg
    Certifed LabVIEW Developer

  • How to recognize the tab key in a JTextField

    I have a drawing program with a main window and a tools palette, which is a JDialog. The tools palette has JToggleButtons and one JTextField. When you have the focus in the JTextField and you press tab repeatedly, it tabs through all the JToggleButtons and then back into the JTextField.
    However I would like to recognize the pressing of the tab key and ask for the focus to go back to the main window.
    I subclassed the JTextField, added a KeyAdapter, but it does not recognize the tab key. I also added the processKeyBinding method, but it doesn't recognize the tab key either.
    How can I recognize the tab key?
    Here is a self-contained test program that illustrates the problem:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class AnanyaCurves extends JFrame
      Tools tools;
      public AnanyaCurves(Dimension windowSize)
        Basics.ananyaCurves = this;
        enableEvents(AWTEvent.WINDOW_EVENT_MASK);
        setTitle("Ananya Curves");
        tools = new Tools(this);
      public static void main(String[] args)
        int toolsWidth;
        Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
        toolsWidth = 200;
        Dimension windowSize = new Dimension(screenSize.width - toolsWidth, screenSize.height - 58);
        AnanyaCurves ananyaCurves = new AnanyaCurves(windowSize);
        ananyaCurves.pack();
        ananyaCurves.setBounds(toolsWidth, 0, windowSize.width, windowSize.height);
        ananyaCurves.setVisible(true);
        ananyaCurves.requestFocus();
      public void setVisible(boolean b)
        tools.setVisible(b);
        super.setVisible(b);
    class Basics extends java.lang.Object
      public static AnanyaCurves ananyaCurves;
      public Basics()
    class Tools extends JDialog
      JToggleButton btnGrid;
      JTextField textGrid;
      JPanel panel;
      public Tools(JFrame frame)
        super(frame, "Tools", false);
        enableEvents(AWTEvent.WINDOW_EVENT_MASK);
        btnGrid = makeBtn("Grid");
        textGrid = makeTextField();
        panel = makePanel();
        pack();
      public JToggleButton makeBtn(String name)
        JToggleButton btn = new JToggleButton();
        btn.setMaximumSize(new Dimension(108, 24));
        btn.setPreferredSize(new Dimension(108, 24));
        btn.setText(name);
        btn.setFont(new Font("Verdana", Font.PLAIN, 11));
        btn.setMargin(new Insets(5, 10, 5, 10));
        btn.setOpaque(true);
        return btn;
      public ACJTextField makeTextField()
        ACJTextField textField = new ACJTextField();
        textField.setFont(new Font("Verdana", Font.PLAIN, 12));
        textField.setMaximumSize(new Dimension(108, 20));
        textField.setPreferredSize(new Dimension(108, 20));
        textField.setText("0.25");
        textField.setEnabled(true);
        return textField;
      public JPanel makePanel()
        JPanel panel = new JPanel();
        panel.setBorder(BorderFactory.createEmptyBorder(0, 0, 0, 0));
        panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
        panel.add(btnGrid);
        panel.add(textGrid);
        getContentPane().add(panel);
        return panel;
    class ACJTextField extends JTextField
      KeyAdaption keyAdaption;
      public ACJTextField()
        super();
        keyAdaption = new KeyAdaption();
        this.addKeyListener(keyAdaption);
      class KeyAdaption extends KeyAdapter
        public void keyPressed(KeyEvent event)
          int keyCode = event.getKeyCode();
          if (keyCode == KeyEvent.VK_TAB)
            Basics.ananyaCurves.requestFocus();
      protected boolean processKeyBinding(KeyStroke keyStroke, KeyEvent keyEvent, int int2, boolean boolean3)
        int keyCode = keyEvent.getKeyCode();
        if (keyCode == KeyEvent.VK_TAB)
          Basics.ananyaCurves.requestFocus();
          return false;
        return super.processKeyBinding(keyStroke, keyEvent, int2, boolean3);
    }Thanks for looking at this.

    Wow, Michael, you work like magic! Thanks so much! I would be happy to give you a commercial key to my Ananya Curves program also once the second release is on my website. It's a program for drawing curves in an easier way without pulling on tangent lines, with all control points right on the curve. Just send me an email to [email protected] if you are interested!

  • What is use of LOAD key word in ABAP-HR

    what is use of LOAD key word in ABAP-HR?

    Hi,
    LOAD keyword is used to load all the parameter values.
    Basic form
    LOAD REPORT prog PART part INTO itab.
    Variants
    1. LOAD REPORT prog PART 'HEAD' INTO itab.
    2. LOAD REPORT prog PART 'TRIG' INTO itab.
    3. LOAD REPORT prog PART 'CONT' INTO itab.
    4. LOAD REPORT prog PART 'DATA' INTO itab.
    5. LOAD REPORT prog PART 'DDNM' INTO itab.
    6. LOAD REPORT prog PART 'DATV' INTO itab.
    7. LOAD REPORT prog PART 'SELC' INTO itab.
    8. LOAD REPORT prog PART 'STOR' INTO itab.
    9. LOAD REPORT prog PART 'LITL' INTO itab.
    10. LOAD REPORT prog PART 'SYMB' INTO itab.
    11. LOAD REPORT prog PART 'LREF' INTO itab.
    12. LOAD REPORT prog PART 'SSCR' INTO itab.
    13. LOAD REPORT prog PART 'BASE' INTO itab.
    14. LOAD REPORT prog PART 'INIT' INTO itab.
    15. LOAD REPORT prog PART 'DATP' INTO itab.
    16. LOAD REPORT prog PART 'TXID' INTO itab.
    17. LOAD REPORT prog PART 'COMP' INTO itab.
    Effect
    Loads the specified part of the generated version of the program prog into the internal table itab (for analysis purposes only).
    The return code value is set as follows:
    SY-SUBRC = 0 The load for the program prog exists and is current.
    SY_SUBRC = 4 The load for the program prog does not exist.
    SY-SUBRC = 8 The load for the program prog exists, but is not current. In some cases, this SY-SUBRC may mean that the program load has been destroyed. You can resolve this by generating the program. With PART 'LREF' , SY-SUBRC = 8 means that the line reference table is incorrect for the program. With PART 'CONT' , it means that the reference part of the internal table is empty.
    itab has been filled only if SY-SUBRC = 0 .
    Reward points if useful.
    Regards,
    Sekhar

  • JButton gains focus when Hitting tab key but hitting Enter has no effect.

    Hi,
    I have a program that has two buttons. When pressed, using the mouse, the buttons text appears in the middle of the screen. I have NOT alerted the focus subsystem. Thus when I press the tab key the buttons are highlighted in turn, to indicate that they currently have focus. However if I press enter the buttons actions (to update the middle of the screen with it's text) does not get activated.
    I am using 1.4.2 on a Windows machine.
    any help on this would be much appreciated !!
    The code is as follows:
    package com.logicacmg.skynet.tms.mmi.ui;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import java.awt.BorderLayout;
    import java.awt.Container;
    public class Test implements ActionListener
    JButton bTwo = new JButton("button 2");
    JButton b = new JButton("button 1");
    JLabel label = new JLabel(" ");
    /** Creates a new instance of Test */
    public Test()
    JFrame frame = new JFrame();
    //Create a panel to hold the MMI screens.
    JPanel mainPanel = new JPanel();
    mainPanel.setLayout(new BorderLayout());
    b.addActionListener(this);
    bTwo.addActionListener(this);
    mainPanel.add(b, BorderLayout.WEST);
    mainPanel.add(bTwo, BorderLayout.EAST);
    mainPanel.add(label, BorderLayout.CENTER);
    //add the main panel which contains the screens and the status bar
    //to this frame.
    Container contentPane = frame.getContentPane();
         contentPane.add(mainPanel, BorderLayout.CENTER);
    frame.pack();
    frame.setVisible(true);
    public static void main(String [] args)
    new Test();
    public void actionPerformed(ActionEvent e)
    JButton aButton = (JButton)e.getSource();
    if(aButton == b)
    label.setText("one");
    else if(aButton == bTwo)
    label.setText("Two");

    Which plaf are you using? Because when I switch to the windows plaf, the behavior is what you describe.
    Demo:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class X {
        public static void main(String[] args) {
            final JFrame f = new JFrame("button focus");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            ActionListener al = new ActionListener() {
                public void actionPerformed(ActionEvent evt) {
                    System.out.println(evt.getActionCommand());
            Container cp = f.getContentPane();
            cp.setLayout(new FlowLayout());
            for(int i=0; i<3; ++i) {
                JButton btn = new JButton("Button " + i);
                btn.addActionListener(al);
                cp.add(btn);
                if (i == 1)
                    f.getRootPane().setDefaultButton(btn);
            final JCheckBox laf = new JCheckBox("platform plaf");
            laf.addActionListener(new ActionListener(){
                public void actionPerformed(ActionEvent evt) {
                    String cls = laf.isSelected() ? UIManager.getSystemLookAndFeelClassName() :
                      UIManager.getCrossPlatformLookAndFeelClassName();
                    try {
                        UIManager.setLookAndFeel(cls);
                        SwingUtilities.updateComponentTreeUI(f);
                    } catch (Exception e) {
                        e.printStackTrace();
            cp.add(laf);
            f.pack();
            f.setVisible(true);
    }

  • TAB key on PC stopped after update

    have Vista 36 bit. Firefox updated me to 16..after that my TAB key on PC stopped working! So I reverted back to version 15.0.1.. it fixed that problem. Then now when with FF browser try to go to my weather program (Wunder Map) (weather underground)...the map doesn't show! the Adobe flash player is 11.4.402.287...which was the one that did work with the older FF. When I use Chrome or RocketMelt browsers, everything works so I know it's a Firefox problem! Every time FF has an update, there's always a problem! I have updated and reverted back on FF and Adobe..I'm so tired of this. Everything was running fine all summer long till now :-(

    Do a clean reinstall and delete the Firefox program folder before reinstalling a fresh copy of Firefox.
    *C:\Program Files\Mozilla Firefox\
    *http://kb.mozillazine.org/Installation_directory
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 16.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible, to cleanup the Windows registry and settings in security software.
    *Do NOT remove personal data when you uninstall your current Firefox version, because all profile folders will be removed and you will also lose your personal data like bookmarks and passwords from profiles of other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other profile data are stored in the Firefox Profile Folder and won't be affected by an uninstall and (re)install, but make sure that "remove personal data" is NOT selected when you uninstall Firefox.
    If you keep having problems then also create a new profile.
    *https://support.mozilla.org/kb/Recovering+important+data+from+an+old+profile
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Tab key does not work properly in Assessment mode

    I am predominatly using Adobe Captivate for software simulations and assessment purposes. 
    I've seen similar items posted on the forums and noted this appears to be a common problem with a solution, to edit the HTM file with the code  so.addParam("seamlessTabbing", "false"); see post http://forums.adobe.com/message/5283597#5283597.
    I tried this with a file that was published without the need for SCORM compliance and it worked fine.  Once the requirement was introduced for SCORM compliance (and to publish as a Zip file), this does not work as the code is different in the HTM file.
    My file has the following code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <!-- Copyright [2012] Adobe Systems Incorporated.  All rights reserved -->
    <html lang="en">
    <head>
      <link rel="stylesheet" type="text/css" href="captivate.css" />
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
      <title>Enter Billable Time - Assessment</title>
      <!-- Include external JS files -->
      <script language="JavaScript1.2" src="standard.js"    ></script>
      <script language="JavaScript1.2" src="scormdriver.js"  ></script>
      <script language="JavaScript1.2" src="SCORM_utilities.js"  ></script>
      <script language="JavaScript1.2" src="Utilities.js"   ></script>
      <script language="JavaScript1.2">
       //Register event handlers
       window.onkeypress    = CheckForDebugCommand;
       window.onload    = OnloadActivities;
       window.onbeforeunload  = Finish;
       window.onunload   = Finish;
       document.onkeypress   = CheckForDebugCommand;
      </script>
    </head>
    <body>
       <div id = "CaptivateContent">
        <noscript>
         This course requires JavaScript to be enabled in your browser.
         Please enable JavaScript, then relaunch the course.
        </noscript>
       </div>
    </body>
    </html>
    How could I edit this to disable the "seamless tabbing" referred to in the original article to make the TAB key work as intended.
    Thank you.

    This is from my e-book:
    http://www.infosemantics.com.au/troubleshoot-adobe-captivate
    Notice that the procedure for Seamless Tabbing in Cp6 with SCORM is different to that for normal non-LMS courses.
    Implementing Seamless Tabbing in Cp6
    All Captivate versions up to and including Cp6 had Seamless Tabbing active by default and set in the HTM template code. But you can still turn it off by manually inserting some code into the published HTM file as follows:
    Navigate to your published Captivate content and open the HTM file in Notepad.
    Locate the line of code in the HTM file that starts with:
    var so = new SWFObject(
    Add the following code on the next line:
    so.addParam("seamlessTabbing", "false");
    Save changes to the file and test by running your project again in the browser.  You should now be able to use the TAB key without leaving your published content.
    Adding seamless tabbing to Cp6 SCORM support files
    Seamless tabbing in Cp6 SCORM projects is a little more complex because the templates are quite different to those used for normal content.  To control seamless tabbing in SCORM content you need to make the changes to the SCORM_utilities.js file in the Captivate install directory.
    Depending on whether you’re on 32bit or 64bit, you should be able to find it at one of these locations:
    32bit:
    C:\Program Files (x86)\Adobe\Adobe Captivate 6 (32 Bit)\Templates\Publish\SCORM\Default\js
    64bit:
    C:\Program Files\Adobe\Adobe Captivate 6\Templates\Publish\SCORM\Default\js
    Open the SCORM_utilities.js file in Notepad or another suitable plain text editor. Scroll down to the end of the code until you find the following lines:
    so.addParam("quality", "high");
    so.addParam("wmode", CONFIG.WMODE);
    so.addParam("bgcolor", CONFIG.BGCOLOR);
    so.addParam("menu", "false");
    so.setAttribute("name", CONFIG.SWFOBJ_NAME);
    so.setAttribute("redirectUrl", CONFIG.REDIRECT_URL);
    so.addParam("AllowScriptAccess","always");
    so.write(CONFIG.TARGET);
    Add the so.addParam("seamlessTabbing", "false"); code to this group and save the file.
    If you are currently unable to save changes to these template files, my gut feeling would be that it must have something to do with your user permissions. E.g. you are not an Administrator for your own PC. Is that possible?

  • Want the mouse behave the same way as a tab key

    Hello,
    I am using abap webdynpro. one of my requirements to automatically put the user in insert mode on numeric fields.  That is when the user clicks in a numeric field we want the field to be highlighted.  As soon as the user types something in the field we want the field  to be cleared so that the user overwrites the data.  Basically we want the mouse behave the same way as a tab key.  highlight the field and clear it as soon as you start typing. 
    is this possible?

    As mentioned this is not possible.
    however, I would be wary of trying to overcome a standard functionality "deficiency " like this by implementing an island. If you take this path - all your custom applications will behave differently from the SAP standard ones - which is not really an ideal situation.
    Instead, add your concern to the sticky at the top of this forum - the functionality to "clear" a field (or select all on field on entry which is what is happening with the tab selection) might be added in future releases.
    I think however, that you'll find that the "select all on tab" behaviour is an browser "functionality" rather than anything specifically that SAP has implemented - if you try using a different browser, you may not find the same thing happening (although with the browsers I've checked it does).
    The same thing happens with any HTML forms - just try yourself. e.g.[external site with details on HTML forms and input fields|http://www.w3schools.com/html/html_forms.asp]

Maybe you are looking for

  • HTTP Sender Adapter

    Hi, I have tried the HTTP client code that was given in many of the forums to post the messages into XI. It works fine. But this is good for testing. How does a HTTP real time client sending a message gets posted into XI without sender information? D

  • Combine two jsp pages into single

    hai how to combine two jsp pages in to one import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward; import org.apache.strut

  • Limit the maximum size of attachment in ME22N

    Dear All SAP Experts, How do I limit the maximum size of attachment in ME22N (System > Services for object > Create attachment)? (for example, attachment size cannot be above 10 MB). Is it configureable in SPRO or do I have to make user exits for thi

  • Error while uploading supplier catalog

    Hi, We have CCM release 200_700 with support package SAPK-27004INCCM.  While uploading supplier catalog, we get the following errors. Any suggestions please. Value assignment not valid for characteristic /CCM/ORIG_CATALOG_ID - char. was not assigned 

  • WhatsApp update - error code 80073cf9

    Hi, everybody I'm facing this error in my Whatsapp updating. My Lumia 920 crashed while I was watching a vindeo at You Tube website, but I didn't know that my Whatsapp was updating when I had to do a soft reset (hiting the three buttoms). When it res