Populating the screen field when the cursor moves to that field

hi every one,
I want to populate the screen field(MODULE POOL) When the cursor moves to that field.
So can any one help me out with this.
EXAMPLE..
I want to populate 'S10_TOT_PRICE' (Total Price). When the fields like 'S10_PIECES' (Number of Pieces) will be entered. I want to populate 'S10_TOT_PRICE'  without pressing any button on the screen nor when enter is hit. When the field 'S10_PIECES''  will be entered with some value and the cursor moves to 'S10_TOT_PRICE' . The Total Price field should be populated. Please help me out with this.
THANKS & REGARDS.
Mahanta.
POINTS WILL BE REWARDED.

Sorry but look at this SAP documentation <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/54/0608162d0711d295520000e8353423/frameset.htm">User Actions on Screens</a>
Extract :
<i>User Actions on Screens
There are various ways in which users can interact with screens.
Filling Input Fields
Users can enter values in any input field on the screen, or change the value using the mouse, in the case of radio buttons and checkboxes. The contents are placed in the corresponding screen field. Filling an input field does not normally trigger the PAI event. Exceptions to this are Checkboxes and Radio Buttons with Function Codes and input fields with Drop Down Boxes.</i>
So, i fear that you cannot "take hand" when user fill a numerical field to perform calculations and update the screen.
Regards

Similar Messages

  • When I put in a DVD, the mac locks up, an image from the DVD stays on the screen even when the dvd is removed.  The only way to remove the image if to do a hard shutdown.

    When I put in a DVD, the mac locks up, an image from the DVD stays on the screen even when the dvd is removed.  The only way to remove the image if to do a hard shutdown.
    Is the hardware corrupt?

    Could you be a little more descriptive, does this happen with all DVDs? Please describe the type of DVDs you are attempting to use, commercial movies, blank DVDs, etc...

  • I would like to inquire about how I could have my iPad 2 repaired or replaced. I bought it With a credit card via apple store website last June 19 of this year. At first, I already noticed a little white spot in the middle of the screen visible when the d

    I would like to inquire about how I could have my iPad 2 repaired or replaced. I bought it With a credit card via apple store website last June 19 of this year. At first, I already noticed a little white spot in the middle of the screen visible when the display on screen is dark. I thought this was okay. Now, My problem with it is that, it now has green discolorations at the center whenever the screen display is black or dark I.e. When a website's color is black or dark or whenever I go to the search interface.
    I am from the Philippines.
    Please attend to this inquiry as promptly as possible. I'm sorry I have to send it here since I cannot see any email or inquiry page on the apple website. I also cannot reach the toll free number on my mobile phone.
    Thank you very much.
    <Serial Number Edited by Host>

    You can find out how to get service for your iPad on this web page:
    http://support.apple.com/kb/index?page=servicefaq&geo=Philippines&product=ipad
    Regards.

  • Should the screen show when the ringer switch is changed?

    My ringer is not working on my 4S with 7. Should the screen show when the mute switch is changed from on to off and back? I believe it did before.

    But is not now. and my ringer is intermittent.

  • Why does the screen unlock when using voice dialer on iphone 5S?

    Here's the scenario I'm referring to:  my iphone is in my pocket with the screen locked and headphones plugged in. I toggle the mic switch and use voice control to place a phone call. On every other iphone I have owned, the screen stays locked. On the 5S, the screen unlocks when the call begins, making the end call button or other phone buttons able to be activated accidentally by my leg.
    Why did they change this feature on the 5S?  The iphone 5 stays locked in the same scenario. Just updated to 7.0.4 and it still hasn't been fixed. Is there a way to fix this issue?

    Close all open apps by double-tapping the home button, then swiping up and off the screen with the app window (not the smaller icon).
    Reset your device: hold down the home button along with the sleep/wake button until the screen goes black and you see the Apple, then let go. (No data loss)

  • I cannot display the block diagram when the VI is running

    It is not possible to show the block diagram while the VI is runs. The frontpannel remains on the screen. When the VI is started from the block diagram, the frontpannel pops up and stays  on the screen

    Are the VI Properties >> Window Appearance... set to dialog or modal? That could keep the front panel on top.
    Lynn

  • Volume icon stays on the screen most of the time

    I have am having a problem with my iPad 2. Normally, if you press the volume button, a symbol appears on the screen showing when the volume goes up or down. This symbols should disappear within seconds. However, this is not the case with my iPad. The symbol is on the screen 90% of the time that I am using the iPad. The volume goes up by itself. I got it checked at a tech store and the technicians said that everything was working properly. If any knows how to fix this problem, please let me know.

    Try a restart - hold the Home and Sleep buttons for arund 7-8 seconds until the Apple logo appears

  • How to deal with the mouse events when the thread is running

    Hi everybody,
    I have a problem with my program.
    Now I want to present a picture for some time in the Canvas,then automatically clear the screen, but when the user press the mousebutton or keybutton, I want to stop the thread and clear the screen.
    How can I receive the mouse event when the thread is running?
    Thanks,

    I use my code in a GUI applet.
    I try to use the code tag, it's the first time.
                   Image im=sd.getStimulus(obj);
                   if(pos==null){
                        g.drawImage(im, (w-im.getWidth(null))/2,(h-im.getHeight(null))/2,null);
                   }else{
                        g.drawImage(im, pos.x,pos.y,pos.w,pos.h,null);
                   try{
                        sleep(showtime);
    //                    Thread.sleep(showtime);
                   }catch(InterruptedException e){}
                   if(pos==null){
                        g.clearRect((w-im.getWidth(null))/2,(h-im.getHeight(null))/2,im.getWidth(null),im.getHeight(null));
                   }else{
                        g.clearRect(pos.x,pos.y, pos.w, pos.h);
                   }

  • How to add a field to the selection screen and when the user enters ...

    hi all,
    can any one plesase send the code of how to add a field to seletiion screen and when the user enters in the field , it should be store in the database table , the table is MKPF and the field is BKTXT.  Thanks.

    Hi Kripa,
       If u r using PNP ldb then the screen u will get is the screen for that ldb and if u want to add some more fields then u define using selection-screen..as follows
    SELECTION-SCREEN BEGIN OF BLOCK mysel WITH FRAME TITLE text-111.
    PARAMETERS: n_in_en  RADIOBUTTON GROUP g1,
                q_ev  RADIOBUTTON GROUP g1.
    SELECTION-SCREEN END OF BLOCK mysel.
    SELECTION-SCREEN BEGIN OF BLOCK mysel1 WITH FRAME TITLE text-222.
    PARAMETERS: r_date TYPE sy-datum DEFAULT sy-datum.
    SELECTION-SCREEN END OF BLOCK mysel1.
    SELECTION-SCREEN BEGIN OF BLOCK mysel2 WITH FRAME TITLE text-333.
    PARAMETERS:f_ver(3) TYPE c DEFAULT 1,
               c_no(10) TYPE c DEFAULT '9D0161',
               u_id(15) TYPE c,
               password(15) TYPE c,
               r_email(30) TYPE c DEFAULT PARAMETERS: s_not TYPE c AS CHECKBOX.
    PARAMETERS:t_run TYPE c  AS CHECKBOX.
    SELECTION-SCREEN END OF BLOCK mysel2.
    SELECTION-SCREEN BEGIN OF BLOCK mysel3 WITH FRAME TITLE text-444.
    SELECTION-SCREEN BEGIN OF BLOCK mysel4 WITH FRAME TITLE text-555.
    PARAMETERS: p_ser  RADIOBUTTON GROUP g2,
    a_ser  RADIOBUTTON GROUP g2.
    SELECTION-SCREEN END OF BLOCK mysel4.
    SELECTION-SCREEN BEGIN OF BLOCK mysel5 WITH FRAME TITLE text-666.
    PARAMETERS:p_path TYPE string.
    SELECTION-SCREEN END OF BLOCK mysel5.
    SELECTION-SCREEN END OF BLOCK mysel3.
    u will get this additional screen after the screen of ldb.
    I hope this will help u..
    Thanks & Regards
    Ashu Singh.

  • Why is the screen bluring when i stream a movie I rent fron itunes?

    Why is the screen bluring when i stream a movie I rent fron itunes?

    What is the year and model and screen size, amount of RAM in your iMac?
    Do you use a broadband Internet connection? Do you use WiFi on your iMac with wireless router or Airport router?
    Internet streaming data speeds are dependent on how many users are streaming data on the same network at the same periods of time as you are.

  • Why is the screen fading when I move my iPad2 horizontally?

    Every time I move my iPad2 horizontally, the screen fades to the point where it can hardly be seen. It restores when it is moved back vertically. Any ideas?

    Have you tried a reset to see if that helps ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • When I try to open I Movie the screen appears with the message creating thumbnails and all my projects have disappeared. Then everything freezes and I have to force close my Macbook Pro

    When I try to open I Movie thes screen appears with the message "creating thumbnails" and then freezes. None of my events or projects appear in the libraries. I cannot close I Movie or my computer and have to force shut down my Macbook. This is a sudden occurence.

    You can never, never transfer an installed copy of PSE. It's just too complex and it strews stuff all over your hard drive in places the migration assistant is not programmed to look. Now you will need to download and run this:
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    after which you can go around and manually remove all the bits from Applications, the library at the top level of your hard drive>application support>adobe, and your username>library>preferences. Spotlight will not help with this; it's programmed to skip these kinds of files.
    Then you can reinstall from scratch. Let us know if you need help finding the library folders.

  • I was trying to make a new screen recording using quicktimeplay, but when I watched the video after recording it all I could hear was me talking while the video was showing on the screen. How do I turn off that recording and turn the right one on? thanks

    I was trying to make a new screen recording using quicktimeplay, but when I watched the video after recording it all I could hear was me talking while the video was showing on the screen. How do I turn off that recording and turn the right one on? thanks

    Hi j2399123,
    It sounds like your screen recording is doing what it was designed to do, capture what is happening on your screen, with optional voice over with the microphone.
    Screen recording is for recording what you see on the screen, it is not a "video capture" option, like for capturing a movie with sound that is playing on your screen.
    For the QuickTime recording options, check out "Recording with QuickTime Player" in
    Mac Basics: QuickTime Player creates, plays, edits, and shares video and audio files
    http://support.apple.com/kb/ht4024
    And for screen recording specifically, there's
    QuickTime Player 10.x: Record your computer’s screen
    http://support.apple.com/kb/PH5882
    Thank you for thinking of Apple Support Communities for your support needs.
    Nubz

  • All folders stay to the right on the screen, I would like to move folders around

    all folders stay to the right on the screen, I would like to move folders around

    What happens when you try to move them?  How are the View Options set for the Desktop:
    You have not helped me!
    What prompted that? 
    OT

  • I came home and attempted to power on my iPad2. I can see the backlight but nothing on the screen. When I try to reset by pushing the off button and the power button at the same time I can sometimes see the characters briefly but the screen has lines and

    I came home and attempted to power on my iPad2. I can see the backlight but nothing on the screen. When I try to reset by pushing the off button and the power button at the same time I can sometimes see the characters briefly but the screen has lines. Can someone tell me if there is anything else I can do before a trip to the repair shop?
    Will

    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore, go into Recovery Mode per the instructions here.

Maybe you are looking for

  • One week of my iCal is frozen.

    Hi, One week in my iCal is completely frozen (I cannot add any event in that week), and all the events I had in that week disappeared. The events I had in that week still appears in my iPhone or iPad, but on iCal they do not appear. What can I do to

  • Sap b1 setup failed on Windows Vista -Home edition

    Hi experts,                   I installed SQL-2005 on windows vista home edition and also installed SAP B1-2007B-PL09 but it shows error connection with License server failed and SAP B1 service manager-License Manager 2007 are also disable .so my que

  • Reader X - Save dialog box popup issue

    Hello, I found that in Adobe Reader X whenever you goto save a file using just the "Save" (ctrl+S) option it brings up the Windows file system box prompt, which allows the user to see other windows files, folders, etc.. This is a huge issue for us as

  • How to create web items with different quantities?

    Hi, I have B1 inventory items that are single items but we will be selling them on the web as 'packages' of different quantities.  For example, we would like the user to be able to select the web item, then be presented with a drop down (attribute) o

  • How to create rtf template to view report in Word and Excel, with numeric f

    Hi, Please help me! How to create rtf template to view report in Word and Excel, with numeric formatted fields (like this 999 999 999,99 with spaces between numbers) and then end user be able to process those fields with Excel tools (sum, etc). Thank