Move the cursor to next input values

Hi
I  have one input  screen  which will save the vaule in z_ table  .
when i am giving input values and press enter it should go next input values
but it is going same field.
how i can move the cursor to next input values.
Thanks
Kumar

Hi,
Use the "set cursor" command followed by the field name.
By triggering PAI only, we can set the CURSOR in some other field.
By just pressing ENTER button and like that.
In PBO, you have to check the first field is filled i.e. NOT INITIAL, you have to set CURSOR in next field and so on...
If he fills any other fields, then you have to message.
Also try SET CURSOR in the PBO.
For your information:
1. http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/dbac0b35c111d1829f0000e829fbfe/content.htm
2. Changing the cursor position on selection screen.
3. http://help.sap.com/saphelp_bw/helpdata/en/9f/dbabbd35c111d1829f0000e829fbfe/content.htm
May this helps you.
Regards.
Deepak Sharma.

Similar Messages

  • How to move the cursor in a text input programatically

    Hi,
    I am using a TextInput field and a my own keyboard UI with buttons for each alphabet.
    When the user presses buttons on the keyboard UI, i populate the TextInput field through data binding.
    But I would want the cursor to move as the characters are entered in the field at the same time.
    So, how do I move the cursor using actionscript code?
    thanks,
    Sunil

    In that case you need to programmatically insert the text at the selection point. You get the selection point using the selectionBeginIndex and selectionEndIndex properties. I have an app where I do that, using this code:
    // textInput is the name of the TextInput control
    private function insertTextAtSelection(text:String):void
         var start:int = textInput.selectionBeginIndex;
         var end:int = textInput.selectionEndIndex;
         var hasSelection:Boolean = start != end;
          textInput.text = textInput.text.substring(0, start) + text + textInput.text.substring(end);
         if (hasSelection)
             textInput.selectionBeginIndex = start;
             textInput.selectionEndIndex = start + text.length;
         else
             textInput.selectionBeginIndex = textInput.selectionEndIndex = end + text.length;
    This is what the code does:
    gets the starting and ending positions of the insertion point (in case the user has an active selection rather than just an insertion point).
    concatenates the old text with the new text and writes it into the text input
    restores the user's previous selection or insertion point (In this case I'm setting the selectionBeginIndex and selectionEndIndex properties rather than calling setSelection(), but the end result is the same.)

  • Moving the cursor to next field after scanning in RF

    Experts,
    We are developing a RF custom transaction for ITSMOBILE.Can any one provide me some info on how to move the cursor to the next input field automatically after scanning the first filed ? is there any setting in the Device or any config missing or any development required for it?
    Thanks in advance

    Pranathi - For instance if you have 3 Input OR Scan fields in a screen, as soon as you scan the value on the first input field, validate it and then set the field property of th einput field to Display Only, then upon ENTER the cursor will automatically go to the next input field. This is in a desktop. THe same will work in the RF Gun as long as the "Auto-Enter" is set up in your RF gun. This is the only setting required in your device and rest all ABAP. Good Luck.
    -Gisk

  • When i move the cursor into this button instead of Arrow mark i need hand i

    Hi friends,
    I have a button like below .
    <input type=submit  name="onInputProcessing(select)"  value=" Material ">
    When i move the cursor into this button instead of Arrow mark i need hand sign.
    Moosa

    hi use onmouseover event in your button and set the cursor style for button through java script
    function cursor()  -
    > include this function between your script tag
    var e = document.getElementById('select');
    e.style.cursor ="hand";
    call this function in your button onmouseover event

  • How can I run the report for different input values at the same time?

    Reports version: Report Builder 6.0.8.13.1
    Oracle version: Oracle8i Enterprise Edition Release 8.1.7.0.0
    I want to run the same report for different input parameter values and spool each o/p to different file and ftp to a server. For this, as a first step, I am spooling different input values in to a file, reading those values through a loop and calling the report for that input values. Each report run/execution is taking 15 minutes. Total report execution is taking approximately 4 hours (assuming 16 different input values) to complete. So I have to wait 4 hours to see ALL outputs.
    I would like to run the report parallel for ALL the input values and I should be able to see the ALL outputs with in 15 or 16 minutes.
    In my shell script, I added & symbol at the end of the report call to start/run the job in the background. Due to this the control passed to the next step after the report call. At this place I have an ftp command to send the output file to a different server and it is giving error some thing like “o/p file is not available/created yet". This is due to the fact that report writer is NOT yet completely started/initiated or it is NOT completed the spooling.
    How can I run the report at the same time for all the input values and save the time?
    Thanks in advance.
    Kishore.

    Increase the number of server engines running right now it seems there is only one engine running ,increase it to 4 or 6
    and then atleast 4 or 6 reports will run simultaneously.
    For FTPing the output add to your sript to check whether it is locked and if not then only try to ftp .
    Also for more better functionality read the document (chapter 15 ) for 10g reports for its new fuinctionality.
    http://download.oracle.com/docs/cd/B14099_17/bi.1012/b14048/toc.htm
    Thanks
    Subodh

  • Firefox4 on ubuntu, after awhile when I click on bookmarks and then move the cursor down to a bookmark, the list of bookmarks disappears. A stop and start of firefox4 fixes the problem but what is the long term fix?

    I upgraded to 4 and I noticed that after 4 has been up for an hour or so I click on the bookmarks. I see my list of bookmarks below but when I move the cursor down to select one, the list disappears.
    The only way I have found to fix this is to stop and start 4. I can then move the cursor down to select a bookmark. This problem has not occurred in previous versions.
    ps.. no '''''delicious''''' installed

    No, I see the three areas at the bottom of the Bookmark area that you refer to, but that also highlights an issue.  When I want to save a story to my Reading List and click on Share then "Add to Reading List" then go back to look at what is stored in the Reading List, my recently-saved item is not there.
    I looked thru the History tab and the Reading List tab and have been in the Bookmark tab.  But even when I Save a Bookmark, that newly-saved Bookmark does not show up in the Bookmark area.
    But then again, the next day (and actually just in the last half-hour) all of the functionality came back.  When I look at the Bookmarks, suddenly, again, all of the Bookmarks that are on my Safari browser on my iMac are now there, and I can now Save a Bookmark.
    It keeps coming in and out and that is what is driving me a little nuts.
    Thanks.

  • How to move the cursor to a text field

    Hello,
    I have a log in window with Username (Text field) and password (Secure Text field). The 'Log In' button is not enabled if I use the Set command. So I wish to use the Keystroke.
    But I need to make sure that Cursor is in the text field and then to keystroke. So how can I move the cursor to the required text filed?
    Note:
    +Why the cursor is not blinking in the text field where I just 'SET' (command)+
    +the value?+

    Well, for a start you can identify the application you're working in. That's kind of important.
    In most cases you can just emulate a press of the tab key but it's kind of a crude a approach (there's no guarantee that you're in the field you expect). Certain applications, though, may have better ways of achieving it, but since we don't know what application you're using we can't say if that's the case here.

  • In latest Nightly, arrow keys don't move the cursor but instead exit the text box. How can I fix this so that the arrow keys move the cursor?

    Using Nightly 28.0a1, I'm having a problem with the text box fields when typing. I use Hacker's Keyboard which has onscreen arrow keys and I find it more convenient than fiddling with a tiny cursor thumb when editing text. On the Play Store Firefox it works just fine but on Nightly, any time I try to move the cursor with the arrow keys it jumps out of the text box and highlights other elements on the page. This is annoying beyond belief as it means having to resort to that imprecise thumb cursor that takes forever to get where you want it. Is this a known issue with the latest nightly builds?

    Thanks for the report. I have filed bug https://bugzilla.mozilla.org/show_bug.cgi?id=939959. It would be helpful to know and if you can comment into the bug to indicate which input field you are testing on.

  • How to move the cursor dynamically

    Hi friends,
             I want to move the cursor  in the output list.  According to the cursor movment I want the output order.
             Normally cursor will move   -
    when first line completes  then only it will go to next line. after that same process but for  me  I want to move  the cursor position from 40 th line to 2nd line or anywhere. Please explain me.
    Regards,
    Surya

    Hi,
         Thank u,
         SET cursor is used to put the cursor on the selection screen. but what my requirement is I want to display the all contents of internal table into he colum wise.
    normally we will print like this   f1  f2  f3 ....one row shows one record.
    but for me output is.
                                   f1
                                   f2
                                   f3
                                      .  one colum will show one record.
    Regards,
    Surya

  • Why does the "TAB" key no longer work to move the cursor from field to field with Firefox 17 in MAC OS 10.8?

    The "TAB" key will not move the cursor from field to field with Firefox 17 in MAC OS 10.8. You have to use the mouse to click on the new field to move the cursor.

    See:
    * http://kb.mozillazine.org/accessibility.tabfocus
    Note: In OS X (as of 2005-01), if this preference is not explicitly set, the “Full Keyboard Access” setting in System Preferences will be honored. All builds before that date (e.g., Firefox 1.0.x) will ignore that setting.
    This pref doesn't exist by default, so if you want to use it instead of the system settings then you need to create a new Integer pref with the name accessibility.tabfocus and set the value to what you want (7 is to tab through all the fields).

  • Desktop icons change size when I move the cursor

    Intermittently, when I move the cursor with my trackpad, the desktop icons change size—minimize going from 44 to 16 icon size. This happens with the Finder in the foreground or background.
    I think there's a fix, but I cannot find it.
    All help appreciated,
    Bill

    Press Command-Option-8. Someone apparently turned on Zoom. (See System Preferences > Universal Access and click the Options button next to Zoom for more information.)

  • How can I move the cursor in the ResultSet?

    Hi all,
    The following is part of my coding...
    private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // TODO add your handling code here:
             ResultSet codes = getCodes();
            try
                    codes.first();          
                    Code c = getCode (codes);
                    jLabel8.setText(c.scode);
                    jTextField2.setText(c.name);
                    jLabel9.setText(c.ic);
                    jTextField4.setText(c.add);
                    jTextField5.setText(c.phone);
            catch (SQLException e)
                System.out.println(e.getMessage());
        private static ResultSet getCodes()
            Connection con = getConnection();
            try
            Statement s = con.createStatement();
            String select = "SELECT [Student-File].* " + "FROM [Student-File];" ;
            ResultSet rows;
            rows = s.executeQuery(select);
            return rows;
            catch (SQLException e)
                System.out.println(e.getMessage());
            return null;
        } I would like to moves the cursor to the first row in the ResultSet object...
    But an error occured...
    Result set type is TYPE_FORWARD_ONLY
    I have tried to change
    Statement s = con.createStatement();to
    Statement s = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE);But a warning existed...
    cannot find symbol
    symbol : method createStatement(int)
    location : interface java.sql.Connection
    Can anyone help me?Thanks.
    Ning.

    Hi,
    Actually I would like to create 2 button, one is named as NEXT, another one is named as PREVIOUS. Once i click on the NEXT or PREVIOUS button, a query statement will be executed to retrieve the information of all of the student in a table. At the same time, the name, student code, address, ic and phone number of a student will be displayed by label respectively. After that, if I click on the NEXT button, the information of the current student will be replaced by the information of the next student. By the way, if I click on the PREVIOUS button, the information of the current student will be replaced by the information of the previous student.
    Ning.

  • Desktop is moving when I move the cursor

    I am getting headache since someone pressed something at the keyboard an made the desktop move around as I move the cursor. I wish I could make it stop. I want my old desktop back. A desktop that doesn't move at all. It should only be the cursor that moves. What can I do?

    Press Command-Option-8. Someone apparently turned on Zoom. (See System Preferences > Universal Access and click the Options button next to Zoom for more information.)

  • PS CS5 Extended on Windows -  When trying to use the clone stamp and/or healing brush as soon as I move the cursor over the image I get an exact copy of the existing layer that moves around the window with the movement of the clone stamp/healing brush.  W

    PS CS5 Extended on Windows
    When trying to use the clone stamp and/or healing brush as soon as I move the cursor from the toolbar over to the image I get an exact copy of the existing layer that moves around the window with the movement of the clone stamp/healing brush.  This just started tonight.  What's causing this weird behaviour?

    What are the settings in Window > Clone Source?

  • My cursor will not move on my MacBook Air. I've forced a shutdown, but it still won't move, and now I can't move the cursor to click my user image to log in. What should I do?

    My cursor will not move on my MacBook Air. I've forced a shutdown, but it still won't move, and now I can't move the cursor to click my user image to log in. What should I do?

    Trackpad does not work properly

Maybe you are looking for

  • Type of Physical Inventory

    Dear All,             how many type of Physical Inventory we can do in SAP.Please explain in detials & also Steps(T-code). Regards Pavan

  • Issue with Archiving printlist

    Hello, On one of our Production system, we have an issue for archiving printlist. We are using option Print immediatly, Print only on a specific output linked archive process with a specific doc. type. We ahave checked as well the content repository

  • Mac OS X Server 10.4 - connect admin tools from one network to another?

    Hi, This may seem quite strange, but I have to do some administration of a server one one network, while being within another one. It seems that if I am able to connect to the internet utside of the office network (e.g. on a public network using wire

  • Can't reopen Photoshop CS6 Help!

    Hi, I can't reopen Photoshop. I was working on a photo this weekend, and I got a warning that my startup disk was almost full. I went into lightroom and deleted a ton of photos, and then emptied the garbage. I went back to processing my photo on CS6,

  • Nokia 5610 - the lights are singeing from time to

    Hi On mi Nokia 5610 , the lights are singeing from time to time At the attached doc file , the lights are marked with blue arrows Question 1 : Why does the lights are singeing ? Question 2 :How can I stop it ? thanks in advanced