Where to find sapUrMapi_checkKey - how to disable "enter - submit"?

hi guys,
where can I find in se80 BPS application javascript "sapUrMapi_checkKey"?
I need to disable submit functionality when user during planning press enter button.
Thanks
David

Typically you would have a Thinkvantage folder.  In it you will see Lenovo Fingerprint Sofware.  There you can enroll your digits.
If you have problem enrolling you cac clear out the fingerprint stored memory option in the BIOS.  F1 at bootup.
Best of Luck,
Mark 
Message Edited by aselgat on 11-03-2008 11:01 AM

Similar Messages

  • I am visually impared and use the voice over feature. Somehow the screen curtain" has been turned ON and I cannot find out how to disable it withouut turning voice over OFF. I'm really in the dark now.

    I am visually impared and use the voice over feature. Somehow the screen curtain" has been turned ON and I cannot find out how to disable it withouut turning voice over OFF. I'm really in the dark now.
    Thanks in advance for any helpposted.

    How to reset iPod
    iPod Troubleshooting Assistant
    Finding the "Five Rs" of iPod troubleshooting
    iPod troubleshooting basics and service FAQ

  • How ti disable enter button in selection screen.

    Hi,
    Developed a  report and when execute the Tx code first i get selection screen and when inputs are given in selection screen and hit enter it will direct to module pool screen.. here after giving inputs in selection screen,ENTER and F8 button are working but i want to disable ENTER button ....
    Regards,
    Venkat.

    Hi venkat,
    I am also fasing same problem plz help me how to call form in start-of-selection please help me with any sample as soon as possible,
    Regards
    sridevi.V

  • How to disable "Enter" key - urgent

    - i have on my site one site password protected. Now i don't want that users cann use Enter key when they write password. Only when the click with mouse. For that i have onClick="..."
    How can i disable only enter key?
    Thanks

    Don't want the user to press the Enter key... who
    thinks up these ideas anyway? It never ceases to
    amaze me.Internet team in one of my early carrer companies were having problems with a search field on their web project... When the user pressed enter they were getting an error, but it worked when they clicked with the mouse.
    So they decided to remove the ability of the user to press enter, rather than figure out what was wrong and fix it... But they couldn't figure out how to disable the enter button either, so they just put red text below the search field asking users to click on the button and not to press enter...
    How the hell do some people get in the door in Software Companies?

  • How to disable the submit button

    Hello ,
    I have multiple controls on a page . I want to disable submit button until the user enters all the fields .
    How to do this . appreciate your help in this .
    rgds
    kumar

    Hi Kumar,
    watch this post: disabling the submit button
    Tobias
    http://apex-at-work.blogspot.com

  • How to disable a submit button on click using javascript

    Hi,
    We have built custom pages for mobile device (PDT) using OAF.
    The application is running on mobile IE 6.12 browser. In mobile platform, the cursor style is not changing to hour glass upon clicking.
    Due to this, user is able to click the same button multiple times before the operation is complete and it is getting submitted multiple time. But the same is working fine in Desktop browsers.
    We have tried with ((OABodyBean)body).setBlockOnEverySubmit(true); But the API documentation states that
    "Sets If set to true, user input will be blocked after EVERY submit (not just PPR submits). This attribute is not supported on the following agent types: pda, phone, voice."
    Hence, I am trying with javascript to disable the submit button after the first click. The issue is, even in the desktop browser
    I am not able to get the button disabled after first click. Please help me.
    I have tried the following statments in PR. But none of them seems to be working.
    //Try 1: directly using id
    OASubmitButtonBean updBtn = ((OASubmitButtonBean)webBean.findChildRecursive("UpdateBN"));
    updBtn.setOnClick("document.getElementById('UpdateBN').disabled=true;document.getElementById('UpdateBN').submit()");
    //Try 2:
    OASubmitButtonBean updBtn = ((OASubmitButtonBean)webBean.findChildRecursive("UpdateBN"));
    updBtn.setOnClick("javascript:this.disabled=true;this.form.submit();");
    //Try 3:
    OASubmitButtonBean updBtn = ((OASubmitButtonBean)webBean.findChildRecursive("UpdateBN"));
    updBtn.setOnClick("this.disabled=true;this.form.submit();");
    //Try 4: using a function
    static final String JS_MULTI_CLICK = "<Script LANGUAGE=\"JavaScript\"> "
    +" function DisabSub(btn)"
    + "{"
    + "btn.disabled = true;"
    + "}"
    +" </Script>" ;
    OARawTextBean rawMultiClick = (OARawTextBean)webBean.findIndexedChildRecursive("JSMultiClick");
    rawMultiClick.setText(JS_MULTI_CLICK);
    OASubmitButtonBean updBtn = ((OASubmitButtonBean)webBean.findChildRecursive("UpdateBN"));
    updBtn.setOnClick("javascript: var obj =disable(this);return DisabSub(obj);");
    Can any one please help.
    Thanks in advance.
    Regards
    Saravanan

    Hi,
    Create two submit buttons A and B adjacent to each other.
    On page Load ,make A as rendered false and disabled true and B as rendered true. using SPEL.
    now on click of button B make button A as rendered true and Button B as rendered false through SPEL.
    In this way on button click the button will become disabled without the use of any javascript.
    Try it if it helps you...
    Thanks,
    Gaurav

  • Swap File - Where to find and how to edit?

    I have a game with requirements I all meet/exceed, but one is unknown to me. And that is the need for a 1GB swap file. I'm not sure where to check to find it, nor how to edit/make one if it's not big enough.
    I'm a bit of a dunce when it comes to these sorts of things, so any help would be appreciated.

    Unix will "page" before it "swaps". Applications require memory for two reasons: (1) they need to load the application program code (or at least some of it) into memory, and (2) as you do things with the program, it needs some memory space for all the data your program is dealing with which is NOT application program code.
    As more memory is needed, the Unix kernel will begin by taking memory listed as being "free" (memory that nothing is using - and btw it's normal for a good Unix operating system to try to keep that number low... you paid for the memory so it might as well do something for you and Mac OS X will try to find a user for it.)
    As the "free" / available memory is depleted, the kernel will begin stealing memory from the "inactive" list (memory which was previously used by some other application, but that application doesn't seem to want to use it right now -- usually because it is no longer running. It doesn't immediately return memory to the "free" list because odds are good you may re-run the application and the system will be faster if the code that would otherwise have needed to be read in from disk is already in memory.)
    As the "inactive" memory is depleted, it will then begin "paging" applications which are still technically in memory, but seem to be idle right now. It doesn't drop the "data" being managed by those applications... instead it just frees up memory used by that application's code. It does this (as opposed to freeing memory used for data) because the code can easily just be re-read in from the disk drive (no need to 'save' the memory before freeing it because it's already on disk.)
    Only when all else fails (no 'free' memory, no 'inactive' memory, and no idle applications that can have their code pages dropped) will the system begin to 'swap' (swapping is the slowest way of creating more virtual memory.)
    Unless you have a very small amount of real memory (in which case just upgrade... RAM is cheap!) or have a LOT of other active applications running on your system at the same time which also are demanding a lot of memory (in which case, just 'Quit' the other applications before starting your game), then your performance issue is not likely caused by a lack of memory.

  • How to disable "Enter Parameter Values" for optional paramters?

    I'm having issues getting the Crystal Reports .NET Viewer to suppress the "Enter Parameter Values" dialog for optional parameters.  I have templates created using Crystal Reports 2008 and am linking against the CR for VS 2010 runtime.
    Within the report template the optional paramter has "Optional Prompt" set to "True".  This particular parameter also allows multiple values and is used in record selection.  Within the record selection it is using HasValue().
    It seems the parameter is set up properly as I have other parameters that are set within the code that are not prompted for.  If I pass in the optional parameter through the code the "Enter Paramater Values" dialog also does not appear and the report is generated correctly.  All of the parameters are set using ParameterFields and they are set before the ReportSource is set.
    Looking through the .NET API documentation it seems like the CrystalReportViewer should have an "EnableParameterPrompt" property that would do what I want however it doesn't seem to be a valid parameter as I get compile errors when I try to use it...  Not sure if it matters or not but I am using managed C++ and our application is built using Visual Studio 2005.  Could that maybe have something to do with it?
    Thanks,
    -Ben

    OK, I'm going to answer my own question as with a little more digging I was able to find out that I needed to set some stuff on the report document to specify that there are no values.  Still not sure why "EnableParameterPrompt" is not valid for me though as it seems like that would work as well.  At any rate here is what I needed to do:
    ReportDocument->ParameterFields[<Optional Parameter Name>]->CurrentValues->Clear();
    ReportDocument->ParameterFields[<Optional Parameter Name>]->CurrentValues->IsNoValue = true;
    -Ben

  • Where to find this "how to guide"

    hi all,
    Could anyone give me the link to this how to "<b>How to Realize a sync-async and async-sync bridge within the Adapter Framework</b>"? I saw this how-to is referenced in some presentations and posts, but I didn't find it.
    Regards,
    Hui

    Hi pls have a look at the below links
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a05b2347-01e7-2910-ceac-c45577e574e0
    Sync/Async communication in Adapter without BPM (SP19)
    /people/venkataramanan.parameswaran/blog/2007/01/18/syncasync-communication-in-jms-adapter-without-bpm-sp19
    Async/Sync Communication using JMS adapter without BPM (SP 19)
    /people/sudheer.babu2/blog/2007/01/18/asyncsync-communication-using-jms-adapter-without-bpm-sp-19
    also try this
    /people/venkataramanan.parameswaran/blog/2007/01/18/syncasync-communication-in-jms-adapter-without-bpm-sp19
    File - RFC - File without a BPM - Possible from SP 19.
    /people/stefan.grube/blog/2006/09/18/collecting-idocs-without-using-bpm 
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5059f110-0d01-0010-7c8b-fdc983be70c0
    Hope it may help you
    Thanks

  • ITunes subscription icon - where to find it how to link it

    I am curious to learn where I can find some of the official iTunes subscription icons that are displayed on many podcasting sites and what is the syntax of the code I need to use to have the icon point to my own very podcast.
    Robin
    Toshiba laptop   Windows XP Pro  

    Robin,
    The really is no "Official" iTunes button. There are lots out there people have created for their sites or borrowed from others.
    I created one back in late June when iTunes first launched it is at
    http://www.podcast411.com/img/iTunes_1click.gif
    You are more than free to use it if you like it.
    There are many others out there - just find one you like and contact the person at that website and ask them if you can use the button.
    As to what people link to the button. Since iTunes launched most people have be linking to their iTunes page. Mine is below:
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=73330788
    You can find this URL by going to your page in iTunes from the search feature and then Right click (control click) on the image - it will then say "Copy iTunes Music store URL". Then people hyperlink this URL to their button - after someone clicks on it - iTunes opens up and they are taken to your iTunes page - They then have to click the "subscribe" button to subscribe to your show.
    However lately more of us have been just simply replacing the http:// before our feed URL and replacing it with itpc://
    itpc://www.podcast411.com/feed.xml
    This allows somenone that clicks on your iTunes button to directly subscribe to your feed - even if it is not yet in the iTunes store.
    Down side to this - is that it does not work with the Mozilla browser - which is about 1% of all traffic. It works fine with Firefox and Safari and IE.
    Also if you think you are going to be in the top 25 of iTunes - it is not certain if this method will count in the iTunes stats.
    On the plus side - it is the easiest way to get someone to subscribe to your show.
    Rob @ podCast411

  • Where to find and how to use JDAPI with oracle forms

    Hi All
    I want to use JDAPI for oracle forms, plz can any one suggest that where i can find the required jar for JDAPI, provide me if any links r there for downloading JDAPI.
    Thanks in Advance

    Hi Torsten Kleiber
    I am interested in changing forms buttons in our existing forms .I was trying to find if it was possible.Going thru your post I realised it is possible to change properties in existing forms .
    i have specific questions with JDAPI will i be able to change my buttons in a form to Iconic buttons.
    Could you kindly send me the code of your class in the abovementioned post (I have created a simple class to modify some forms properties.)
    I would like to have alook at it i am a Novice in java but looking at your source code may be able to give myself a head start .(I am well versed pl/sql forms and reports NO JAVA idea)
    Two while trying out the oracle demo to create a form by jdapi I was able to create a class and was unable to execute it .What do i need to install to execute it. I have forms 10 installtion with Jinitiator 1.3 installed
    DO i need to install Jdeveloper or JDK i think either of this is required. I shall be highly be obliged if u can clear my queries or any one else in the forum may wish to add to 2cents to my infinetly minimal knowledge of java

  • Where to find and how to install the exercise files.

    For whatever reason they are not installed with the free trial version.

    Well it won't let me paste the url but it's simply the get started series (which are abridged clips from Iynda.com apparently). The guy opens exercise files but says you can follow along without them which is what I'm attempting. If he leans too much on them further on I may need them. Your posts seem to indicate they aren't necessary. You guys used the same start up series? Know of another free source of walk throughs (without sample files Or referring to other Adobe software)? I learn best by example...
    I'm hoping to learn this in order to embellish my animations done in Bryce3D as well as captured footage.

  • Aperture 2, where to find user how to and support?

    Hi, I purchased Aperture 2 about a month before Aperture 3 was released. I have not really gotten comfortable and adept with Aperture 2. I am a novice photographer. It appears that all the online support and tutorials are all about Aperture 3 now. Aperture 3 looks great but I am not prepared to spend more for my needs. Is it that similar that I will be able to apply most of the information to aperture 2. I have been amassing quite a library in Aperture 2 and need to get a handle on editing and organizing before the project gets too huge. Maybe someone knows of some links that are specific for Aperture 2. Any *tips or leads* will be greatly appreciated.

    Don't forget to read the Aperture 2 manual! However if you want online resources, try the archives of the free (or paid) version Aperture Users Network:
    http://aperture.maccreate.com/

  • How to disable auto-submit in address bar?

    since a few weeks i have a problem with safari.
    sometimes when i type an URL in the adress bar safari auto-completes AND auto-submits it.
    for example i type in the adress bar "dis" (because i want to visit discusion.apple.com) but
    then safari auto-completes it to "disco.com" and immediately submits it (without me hiting enter).
    the auto-completion isnt the problem - i like it and it's a must have but
    the auto-submit is very annoying.
    does anyone know which settings i have to make to fix this? or any workaround?

    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.
    If you wish, you may be able to salvage the errant extension by uninstalling and reinstalling it. Its settings will revert to their defaults. If the extension still causes a problem, remove it permanently or refer to its developer for support.

  • How to Disable the SUBMIT Button using the formula.

    Hi. Govindu and ohters.
                       I really appreciate your efforts in helping others.
    I am currently working with VC 7.0. Where I am working with Validation of Data.
    we have input buttons( fields) like Emp, Earea, Joining date (month & Year), Ending date((month & Year) etc.,
    Here we have one submit button 'submit'.
    Here what my client asks is unless and until, user fills all details then only
    the submit button should be enabled. Otherwise submit button should be in disable mode.
    I could be able to write formula for 'submit' button's properties( Disable) like this.
    BOOL(IF(LEN(@Emp_code)0 AND LEN(@Earea)0 AND LEN(@Edept)0 AND DSUB(DVAL(@Joining_date), DVAL(@Ending_date),'D')<0 ,false,true))
    Here condition is always make sure that 'Joining date' should be greater than 'Ending date' . where it is working fine for all fields except Calender Year month(Joining date & Ending date).
    the calender year month format is Example : """" May 2007""""
    But it is considering only month But not year.
    Can you kindly provide your inputs.
    Edited by: Vijay Kumar on Dec 2, 2008 10:51 AM

    Hi. Murtuza.
                        Thanks for Your valueable reply. I have already been trying with the following formula.
    But still I am not getting expected result.
                   BOOL(IF(LEN(@Material_Type)<>0 AND  LEN(@Plant)<>0 AND LEN(@Vendor)<>0 AND
                                           DSUB(DVAL(@To), DVAL(@Calendar_Year_Month),'D')<0 ,false,true))
                    I don't have any problem with   input buttons( fields) like Material type, Plant, Vendor.
                 But _'Calender Year  Month From'  should be  less than  to 'Calender Month To' then only the submit button should be enabled. Otherwise submit button should be in disable mode. This is not working.
                                     The calender year month format is Example : """" May 2007""""
                                                But it is considering only month But not year. 
       means It only considering Month only, It is not considering the Year. Please let me know the your information on this.
                                Thanks and Regards
    Edited by: Vijay Kumar on Dec 3, 2008 10:35 AM

Maybe you are looking for

  • ADF UIX Passing values from one Data Control to another

    How to transfer value of any column in the selected row of the table (one data control) to the messageTextInput, based on another Data Control? It may be on a single UIX-page or on different pages. Thank you.

  • How do I enable the Mac keys in windows XP?

    I recently bought a new Mac keyboard with a num pad. Before that I was using a normal mac keyboard. I cannot remember if I changed the drivers or any settings before, but my old mac keyboard could lower and increase volumes using the assigned buttons

  • How connect iPhone to TV (Philips) via USB?

    How connect iPhone to TV (Philips) via USB, because TV does't recognize iPhone.

  • No enter key or focus w/firefox

    When testing with Firefox, my flash form doesn't allow the enter key or the scroll wheel to function. Not can I set focus on a particular field. That is, The field appears to be in focus, but the cursor is not set to that field. I have to click it fi

  • Can i use combination peoplesoft system  and http adapter on sender side

    hai can i use combination peoplesoft system  and http adapter on sender side is their any modifications i have to do on module tab can any body tell me how to post data to http adapter is there any application gui is there to post data