Too many KeyEvents with AWTEventListener

I am using the AWTEventListener to record all keystrokes in my program. I have got this running fine on java 1.4, but when i run it on java 1.3 it starts behaving oddly. I am capturing a number of events (KeyEvent, MouseEvent, FocusEvent etc...) but on 1.3, the number of keyEvents i receive are far too many.
if i hit a key which would normally produce a KEY_TYPED event, i receive (in this order):
KEY_PRESSED
KEY_PRESSED
KEY_TYPED
KEY_RELEASED
KEY_RELEASED
If i hit a key which does not produce a KEY_TYPED event i receive:
KEY_PRESSED
KEY_RELEASED
KEY_RELEASED
I have tried this same code on mac OS X and Win2k running java 1.3, and they both produce the same results. I also tried it on a solaris system which didn't have 1.3 installed, but did have 1.4 and 1.2. Both behaved properly producing the expected number of events (one pressed, one released, and one typed if a typed event was produced). 1.4 on windows also ran fine.
I tried the same test using a keyEventListener instead of AWTEventListener, and the expected keystrokes were returned in versions 1.3. So this seems to be a bug affecting only the AWTEventListener. However I have searched google and the java forums and bug database and have found no record off this anywhere else. Has anyone else had this trouble?

Since the focus event model has changed in 1.4, the KeyListeners have become incompatible as well. If you search the forum again, I'm pretty sure you'll find something useful.

Similar Messages

  • Too many tables with EXECUTE permision

    Hi Gurus,
    I found that my live databases has too many tables with EXECUTE permision. But I dont know how it happens: my query as follows:
    select table_name
    from dba_tab_privs
    where owner='SYS' AND
    privilege = 'EXECUTE' AND
    grantee = 'PUBLIC'
    result
    TABLE_NAME
    /598cc2d9_AWExceptionMessageRe
    /24bd47b0_AWExceptionMessageRe
    /b99e8561_AWExceptionMessageRe
    /968869b8_AWExceptionMessageRe
    /f8bf68b3_AWExceptionMessageRe
    /9abd5a42_AWExceptionMessageRe
    /5e83964b_AWExceptionMessageRe
    /f01cb9e5_AWExceptionMessageRe
    /380f765f_AWExpressCommandExce
    /adef78c4_AWMemberExistsExcept
    /5166f5c2_AWObjectExistsExcept
    TABLE_NAME
    oracle/AWXML/SparseDefinition
    oracle/AWXML/ModelDimRef
    /9d17934e_AWFunctionNotSupport
    /d18d9de8_AWHandlerBaseTest
    DBMS_AW_XML
    INTERACTIONEXECUTE
    CWM2_OLAP_INSTALLER
    DBMS_XSOQ_ODBO
    OLAPI_MDX_ROWSET_IMPL_T
    OLAPI_MDX_ROWSET_TABLE
    16444 rows selected.
    ==========================================================
    Then I execute above query in other database. result was:
    TABLE_NAME
    STANDARD
    UTL_HTTP
    DBMS_PICKLER
    DBMS_JAVA_TEST
    UTL_FILE
    UTL_RAW
    UTL_TCP
    UTL_INADDR
    UTL_SMTP
    DBMS_TRANSACTION
    DBMS_SESSION
    DBMS_DDL
    DBMS_UTILITY
    DBMS_SPACE
    DBMS_ROWID
    DBMS_PCLXUTIL
    DBMS_APPLICATION_INFO
    DBMS_OUTPUT
    DBMS_DESCRIBE
    DBMS_SQL
    DBMS_EXPORT_EXTENSION
    DBMS_JOB
    DBMS_STATS
    DBMS_ZHELP_IR
    DBMS_PSP
    DBMS_RULE
    AQ$_AGENT
    AQ$_DEQUEUE_HISTORY
    AQ$_SUBSCRIBERS
    AQ$_RECIPIENTS
    AQ$_HISTORY
    AQ$_NOTIFY_MSG
    AQ$_DUMMY_T
    DBMS_AQ_EXP_QUEUE_TABLES
    DBMS_AQ_EXP_INDEX_TABLES
    DBMS_AQ_EXP_TIMEMGR_TABLES
    DBMS_AQ_EXP_HISTORY_TABLES
    DBMS_AQ_EXP_SUBSCRIBER_TABLES
    DBMS_AQ_EXP_QUEUES
    DBMS_AQ_IMP_INTERNAL
    DBMS_RMIN
    DBMS_RESOURCE_MANAGER
    DBMS_RESOURCE_MANAGER_PRIVS
    DBMS_RMGR_PLAN_EXPORT
    DBMS_RMGR_GROUP_EXPORT
    DBMS_RMGR_PACT_EXPORT
    LOW_GROUP
    DEFAULT_CONSUMER_GROUP
    DBMS_DEBUG_VC2COLL
    DBMS_DEBUG
    PBSDE
    DBMS_SUMMARY
    DBMS_SNAPSHOT
    DBMS_REFRESH
    DBMS_SNAPSHOT_UTL
    DBMS_REFRESH_EXP_SITES
    DBMS_REFRESH_EXP_LWM
    DBMS_TRACE
    DBMS_LOB
    UTL_REF
    UTL_COLL
    ODCIPREDINFO
    ODCIRIDLIST
    ODCIINDEXCTX
    ODCIARGDESCLIST
    ODCIFUNCINFO
    ODCISTATSOPTIONS
    ODCICOLINFOLIST
    ODCIOBJECT
    ODCIOBJECTLIST
    ODCIQUERYINFO
    ODCICONST
    SYSEVENT
    DICTIONARY_OBJ_TYPE
    DICTIONARY_OBJ_OWNER
    DICTIONARY_OBJ_NAME
    DATABASE_NAME
    INSTANCE_NUM
    LOGIN_USER
    IS_SERVERERROR
    SERVER_ERROR
    DES_ENCRYPTED_PASSWORD
    IS_ALTER_COLUMN
    IS_DROP_COLUMN
    GRANTEE
    REVOKEE
    PRIVILEGE_LIST
    WITH_GRANT_OPTION
    DICTIONARY_OBJ_OWNER_LIST
    DICTIONARY_OBJ_NAME_LIST
    IS_CREATING_NESTED_TABLE
    CLIENT_IP_ADDRESS
    DBMS_REPUTIL
    DBMS_REPUTIL2
    DBMS_OFFLINE_RGT
    DBMS_REPCAT_RGT_EXP
    DBMS_REPCAT_INSTANTIATE
    DBMS_CRYPTO_TOOLKIT
    DBMS_RANDOM
    how come it happens? need help from u all !!!!!!!!!!

    you asked why you have such grant found in dba_tab_privs. Let's try to find DBMS_RANDOM (listed on your output) in $ORACLE_HOME/rdbms/admin:
    cd $ORACLE_HOME/rdbms/admin
    grep dbms_random *
    dbmsrand.sql:CREATE OR REPLACE PACKAGE dbms_random AS
    dbmsrand.sql: -- execute dbms_random.seed(12345678);
    dbmsrand.sql: -- execute dbms_random.seed(TO_CHAR(SYSDATE,'MM-DD-YYYY HH24:MI:SS'));
    dbmsrand.sql: -- my_random_number := dbms_random.random;
    dbmsrand.sql: -- my_random_real := dbms_random.value;
    dbmsrand.sql: -- select dbms_random.value from dual;
    dbmsrand.sql: -- insert into a values (dbms_random.value);
    dbmsrand.sql: -- execute :x := dbms_random.value;
    dbmsrand.sql:END dbms_random;
    dbmsrand.sql:CREATE OR REPLACE PACKAGE BODY dbms_random AS
    dbmsrand.sql:END dbms_random;
    dbmsrand.sql:CREATE OR REPLACE PUBLIC SYNONYM dbms_random FOR sys.dbms_random;
    dbmsrand.sql:GRANT EXECUTE ON dbms_random TO public;
    This is run by catproc.sql script which you run while creating database.

  • Aborting index build. Too many errors with finding and copying files ...

    Hi dears,
    I'm using UCM 11g.
    I'm trying to start the automatic update cycle. When i start it, it gives me an error message just like :
    Indexing aborted at :<time>. Aborting index build. Too many errors with finding and copying files to the appropriate place.+
    Can anybody help me about this problem?
    Helps will be appreciated.
    Erdo
    Edited by: erdo on 28.Mar.2013 11:11

    Read this: error in Collection Rebuild Cycle
    and maybe also UCM Indexer - Collection Rebuild Cycle errorring out

  • I have too many problems with UserKeyMD Object

    Hi everybody!!!......
    I've too many problems with UserKeyMD object, this don't work, I have a Application which create the DataBase structure, but when try it for create the user key on "x" field in "ABC" table (x field is present on table, is db_Alpha with 8 chars, subtype is st_None) is raised the problem.
    I try to create this way the key (VB example):
    Dim oUserKeysMD As SAPbobsCOM.UserKeysMD
    Set oUserKeysMD = oCompany.GetBusinessObject(oUserKeys)
    oUserKeysMD.TableName = sTableName
    oUserKeysMD.KeyName = sKeyName
    oUserKeysMD.Unique = BoYesNoEnum.tYES
    oUserKeysMD.Elements.ColumnAlias = sFieldName
    oUserKeysMD.Add '<- here problem is raised
    System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserKeysMD)
    I'm work in Delphi .Net and translate the source code of my function to VB.
    P.D.:this source code at least work 2 times, but does not use it until today, I do not know because no longer it works now but. 
    excuse my ingles is very bad
    thanks
    regards
    Francisco Troncoso
    Chile.
    Message was edited by: Francisco Troncoso

    Hi, I using this names for my tables, fields and keys.
    the table name is:
    AOTI
    the fields names are:
    codigo alpha editsize 8
    decrip alpha editsize 40
    tipo   alpha editsize 1 - valid values W, C - Default Value C
    grupo1 alpha editsize 1 - valid values Y, N - Default Value N
    grupo2 alpha editsize 1 - valid values Y, N - Default Value N
    grupo3 alpha editsize 1 - valid values Y, N - Default Value N
    grupo4 alpha editsize 1 - valid values Y, N - Default Value N
    grupo5 alpha editsize 1 - valid values Y, N - Default Value N
    grupo6 alpha editsize 1 - valid values Y, N - Default Value N
    grupo7 alpha editsize 1 - valid values Y, N - Default Value N
    grupo8 alpha editsize 1 - valid values Y, N - Default Value N
    all fields have subtype none and the key name is :
    AOPK1
    ColumnAlias is codigo, when I try to create the table, fields and key with MetaDataOperatios example I have not problems but I try to create with my application I have the error.
    Regards,
    Franciso.

  • Too many problems with z1

    Well to start off I'm a loyal Sony user. And I recently purchased the z1 after falling in love with it at first sight. Before this I had the arc s which I'd bought as soon as it was released in my city and used it till I lost it a month ago.
    I'm really careful about my gadgets. I keep them safe and right, no harsh use our anything.
    So moving on, the problems I've been facing with the Z1 are :
    Phone randomly switches off or restarts on its own.
    The backlight stays on even after I've locked the phone,. I've tried checking / un-checking the optimise lighting option. Nothing helps. And the problem only gets solved after I take a pen and stab the red OFF button.
    Another really annoying problem I've been facing is that there is a delay while talking on the phone, like my voice reaches the person after a long gap of 2-3 secs. It's made talking on the phone impossible.
    I don't have too many apps on the phone, restart it every other day or when I make changes. Keep it clean and right.
    Idk what's wrong. I'm really disappointed after spending so much money.

    For the audio delay when on a call I would actually advise speaking with your network provider as it is very unlikely that your phone would be causing this.
    For the restarting issue, given what you have said I would advise running an update/repair if you have not already:
    1. Download the PC Companion software from http://www.sonymobile.com/gb/tools/pc-companion/
    and install it on your PC.
    2. Install and open PC Companion then select Support Zone.
    3. Phone Software Update.
    4. Start.
    5. Repair Phone
    6. Continue
    7. Accept data removal
    8. Next
    9. Wait for prepare
    10. Select Phone
    11. Follow the connection steps
    Don't forget to mark posts that answers the topic as Accepted Solution. 
    If you find any post helpful, press Kudos.
    What are your thoughts about this forum? Let us know by doing this short survey.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • SQL subquery returning too many rows with Max function

    Hello, I hope someone can help me, I been working on this all day. I need to get max value, and the date and id where that max value is associated with between specific date ranges. Here is my code , and I have tried many different version but it still returning
    more than one ID and date
    Thanks in advance
    SELECT
      distinctbw_s.id, 
    avs.carProd,cd_s.RecordDate,
    cd_s.milkProductionasMilkProd,
    cd_s.WaterProductionasWaterProd
    FROMtblTestbw_s
    INNERJOINtblTestCpcd_sWITH(NOLOCK)
    ONbw_s.id=cd_s.id   
    ANDcd_s.recorddateBETWEEN'08/06/2014'AND'10/05/2014'
    InnerJoin
    (selectid,max(CarVol)ascarProd
    fromtblTestCp
    whererecorddateBETWEEN'08/06/2014'AND'10/05/2014'
     groupby 
    id)avs
    onavs.id=bw_s.id
    id RecordDate carProd       MilkProd WaterProd
    47790 2014-10-05   132155   0 225
    47790 2014-10-01   13444    0 0
    47790 2014-08-06   132111    10 100
    47790 2014-09-05   10000    500 145
    47790 2014-09-20   10000    800 500
    47791 2014-09-20   10000    300 500
    47791 2014-09-21   10001    400 500
    47791 2014-08-21   20001    600 500
    And the result should be ( max carprod)
    id RecordDate carProd       MilkProd WaterProd
    47790 2014-10-05   132155  0 225
    47791 2014-08-21   20001    600 500

    Help your readers help you.  Remember that we cannot see your screen, do not know your data, do not understand your schema, and cannot test a query without a complete script.  So - remove the derived table (to which you gave the alias "avs")
    and the associated columns from your query.  Does that generate the correct results?  I have my doubts since you say "too many" and the derived table will generate a single row per ID.  That suggests that your join between the first
    2 tables is the source of the problem.  In addition, the use of DISTINCT is generally a sign that the query logic is incorrect, that there is a schema issue, or that there is a misunderstanding of the schema. 

  • HT6048 MY PHONE WAS DISABLED TOO MANY TRIES WITH PASSWORD NOW WHAT IT'S NOT CONNECTED TO A CARRIER

    Want to gift my old 3g to a child but forgot my password. too many attemps, now disabled. Phone is not currently with a provider

    Hi, Jeffreyjonsson. 
    Thank you for visiting Apple Support Communities. 
    As long as you have the previous carriers inactive SIM card in the device, process the steps in the article below. 
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    Also, an active SIM card from the original carrier will allow you to restore the device as well. 
    Using an iPhone without a wireless service plan
    http://support.apple.com/kb/ht3406
    Cheers,
    Jason H. 

  • Disabled after too many attempts with wrong passcode

    ipod touch 4 th gen disabled after too many wrong attempts with wrong passcode. computer usually synced to is stolen. attempting to sync to new computer> want to restore

    Do you have a backup? Transfer to new computer if you haven't already. A restore will wipe the contents.
    See
    http://support.apple.com/kb/ht1212

  • Too many problems with flashplayer

    I'm getting more and more frustrated with flashplayer. Ever since it it came out with the 11 versions I've had too many crash problems, graphics are jumpy and messy on fb games. I can't stand it! If I downgrade fp, then I can't play certain games as they require the most up to date player. I can't win! Whatever you guys had in the older versions needs to go back to that sort of programing. Whatever got added in simply messed up my crap. If I didn't have to rely on fp so much it would've been long gone by now. That's how angry I am at it.
    If you want to know my OS, it's Windows Vista 32 bit. Browser used is Firefox.
    P.S. And I did try all the method suggestions through support to see if things would run fine. It's not FF, I know that. I never had any problems with Flash until version 11's came out.
    Message was edited by: Catchvee

    <i>Also I don't really think that I have to manually update these device, as the updates are running automatically on my laptop... Thanks </i>
    Correct!! You're on Windows 7 so if that's an OEM machine (brand name like HP, Acer, etc) then your drivers should already be updated. Also, Windows Updates handles all of the drivers in their Optional Updates (afaik).
    How is Flash doing? Is it still misbehaving or was it fixed after disabling hardware acceleration?

  • Too many problems with Flashplayer / shockwave

    Hi
    I have been using FF for years. However especially from this latest version, I have so many bugs with flashplayer / shockwave that I am thinking about moving to chrome........ (I don't want to....!)
    All the time, all the day, when I am using weesoo (videoconf), or youtube, or facebook ar anything other site using flash, FF is blocking and I get (from time to time) an error message about flash.
    It is a disaster for me. During all the day now, I have to clear the history, run Ccleaner, reboot my computer, trying to fix that problem. I don't have it with Chrome, but I don't want to move to chrome !!!!!
    I am a saleswoman, then I am working a lot through videoconf, with several windows and the mails, all open in the same time
    My laptop is really clean and uptodate, this does not come from me. I even re-install FF recently.
    My plugins of course are updated.
    Please find below an example of an error :
    https://crash-stats.mozilla.com/report/index/4180546d-e1f1-4cc6-a4f3-bd9552140508
    I cannot go on like that. Please help ! I hope you've understood me, I am French... I tried my best to explain in English.
    Thank you for your help...
    Kind regards
    jappeloup

    <i>Also I don't really think that I have to manually update these device, as the updates are running automatically on my laptop... Thanks </i>
    Correct!! You're on Windows 7 so if that's an OEM machine (brand name like HP, Acer, etc) then your drivers should already be updated. Also, Windows Updates handles all of the drivers in their Optional Updates (afaik).
    How is Flash doing? Is it still misbehaving or was it fixed after disabling hardware acceleration?

  • Too many problems with Firefox... my company asking to convert to Chrome! What's happening here folks?

    Firefox for OS X is rapidly losing favor within my company - the FF browser is getting too unreliable (freezes & crashes), non-intuitive/complicated for configuration, and loses configurations/settings with its MANY updates.
    People are liking Chrome & Safari more and more - but I LOVE FF because its 100% CSS compliant.
    What's happening to my favorite browser??

    Hi, what problems exactly are you having that you're looking for help for?
    People in an enterprise situation might consider using [http://www.mozilla.org/en-US/firefox/organizations/ Firefox ESR], which updates much less frequently as regular Firefox and as such is supported for much longer periods of time.

  • Too many issues with upgrading to OS6 for BB9700 - Going back to OS5

    I upgraded to os6 severay days ago. Here are the pros and cons (from a non technical perspective)
    PROS:
    * New look of the calendar and text .... easier on the eyes with different colors
    CONS:
    * Don't know why but after only a few days, I have to reset the BB 4 to 5 times today. It just locked up and I had to pull the battery.
    * THE KILLER - BB developer decided to force the browser to go to my company's network BES, instead of my cellphone carrier's 3G network. Because the company puts so much restraints and limits on accessing the internet from their network, so many websites are locked and off limit.
    In the past w OS5. I had 2 icons of browsers, one for the company's browser and one regular browser. I can go to the advanced options to direct the regular browser to go my cellphone carrier 3g network. It worked so well.
    Now with OS6, the developers force users to go through their company's BES network. That is crazy. I pay for the Blackberry and the monthly cell phone and internet data plan, and now I cannot use my phone /internet the way I choose .
    If the OS6's developers do not listen to users' complaints on this serious issues, then in the near future as my company allows us to access their email and outlook contacts via droid and Iphone, I will be the first to say good bye to Blackberry.
    How many users have the same problem as I?

    You are confusing RAM with hard drive space - you appear to have the standard amount of RAM (the memory a computer uses to run apps). 4 GB is fine, but considered a minimum - more would be better.
    As for the hard drive space (that is the space you have available on your hard drive to read/write): you need 8 GB minimum to install Mountain lion and, as a general rule, you should maintain a minimum of 10 - 15 GB of empty space at all times - more is better there as well. You can find out how much space you have by highlighting your hard drive icon (Macintosh HD icon on your desktop) and control click on it. In the popup window, choose Get Info. Then post the info showing such as Capacity, Used, and Available.
    FWIW, Mountain Lion will continue to show in your Purchases because it is available for you to download again should you need it. You obviously have it installed if it shows that you are running 10.8.3 - which, but the way, is not the latest version, so run Software Update: we are up to 10.8.5.

  • Is there any way to get back to iOS 6.1.3? Far too many bugs with iOS 7

    Is there any way to go back to iOS 6.1.3 on iPhone 4? I'm sick of the bugs that have come with iOS 7. My phone is slow, it randomly calls numbers when it's in my pocket even though voice dialling has been disabled and the amount of crashes I've had have been ridiculous. It is so unstable. Is there anyway to change or is it time I considered jumping ship and going to Android?

    Nope... Many other post in here with same question... Sorry

  • Too many problem with Lion

    So many things are not working properly in os10.7.2:
    1. File manager - I need to force quit and restart it to work about 2 times daily.
    2. Printing on HP network FAX and printer - my imac doesn't find it but PC under VMWare does in same machine on same network. For example the symple proces of printing from my mc is makeing pdf, open vmware and pc, open pdf SW in pc and print
    3. Start application by 2X clicking a file name will not start 70% of the time
    4. Software update 60% of apps needed update after installing lion will download and start running the update but fail to actualy do the update
    5. Hitting an app icon in the dock will no longer take me back to an open app.
    6. Uploading pictures to Facebook will work from apperture but will not let me select them from facebook (I have to open the pc under vmware and there I can do it frolm IE
    7. Computer seems slower and stickie than in Snow leopard - mostly when working in Apperture
    8. programs used to expand music .flac file are doing it partially - need to use PC under vmware to open my downloaded music
    this are just few things that came to mind. It makes no sense to use mac any longer
    An help to olve each and all issues will be appreciated.

    Exactly the same infuriating problem we and many others get with OS X from 10.6 on when Apple dropped Apple Talk.
    Having spent days fighting to get drivers that will run our older laser printers like HP5000, 5100, 2100, 2200 and 4MV, we came up with a simple solution:
    We use an iMac running 10.5.8 as a print server. All the 10.6 upwards Macs on the same network will see and add the printers immediately through the shared older (Apple Talk) iMac.
    Cheapest and simplest option really .... it'sannoying that a brand new Mac can no longer see existing network printers without complex investigation and trying various downloads.
    Answer is simple and cheap if you happen to own a 4 or 5 year old Mac with an OS lower than 10.6 which still has Apple Talk.

  • Ipad2 and Ipad3, cannot see Ipad2 user - worked ok for months, now broken. Like to know how to upgrade Ipad2 to IOS 5.1.1 (too many issues with IOS 6 - consider too risky)?

    I have been using Facetime successfully for months to communicate with my elderly mother in the UK (I am located in Canada)? Today we tried Facetime and we could hear each other but I could not see her. She could see me ok however.
    As I wasn't sure whether the problem was with my iPad or hers I made a FaceTime call to my brother-in-law in the UK, this call worked perfectly. I then tried a Factime call with a friend in Canada and it also worked fine.
    My mother could see herself in the small window so we know that her camera must be working.
    Here are the IOS versions for the four IOS devices used in these tests..
    My mothers iPad 2: IOS 4.3.5
    Brother-in-law's iPad 3: IOS 5.1.1
    Friends iPhone: IOS 6
    My iPad 3: IOS 5.1.1
    My questions are as follows:
    Q1/ Has anyone heard of Facetime problems between newer and older iPads as a result of Apple rolling out IOS 6 recently?
    (maybe there have been some changes to the FaceTime servers as part of the IOS 6 rollout?)
    Q2/ Is it possible to update my Mothers iPad 2 (IOS 4) to IOS 5.1.1 and do this without using a computer? (I would prefer her to update to 5.1.1 and hold off updating to 6 because of all the issues I read of users having problems with 6, including FaceTime issues)
    My mother is in her 70's, and has no computing device other than her iPad. She can just about manage to figure out how to use the basic features of her iPad. Therefore the update process needs to be very easy and straightforward otherwise she is likely to get very confused, very quickly!
    Facetime has been brilliant for my mother and keeping in touch with her son, thousands of miles away, we would really like to get Facetime working again.
    Can anyone  help?

    You will not be able to block IOS 6.  You can try blocking it with a webfilter or firewall but if the students take these home or connect to another network or iTunes they can get it that way.   You will find that the vast majority of all apps will work with 6 or have been updated to work with it by now.

Maybe you are looking for

  • Is it possible to have a "quit" option in the left click pop-up?

    I sued to love the shareware FinderPop under OS 9 and OS X mainly for the option of adding a control-click contextural menu item to quit a program when I was through with it. I understand that contextural menus in Snow Leopard are now services, but w

  • Bug in new JRE Windows installers for 8U20

    Both the x86 and x64 installers add the following string to the uninstall section of the registry. This is an INSTALL string not UNINSTALL. The net effect is the package reinstalls rather than uninstalls. MsiExec.exe /I{26A24AE4-039D-4CA4-87B4-2F8321

  • Transporting issue with Enhancement spot

    Hi All; Now i have an issue when transport the enhancement spot, we have two clients, one is for developpment, and one is for testing, i found that there is an enhancement spot exists on the testing client but not exists on the developping client. An

  • Problem configuration LAC 1.0

    hi all, i have some problem when i try configuration LAC 1.0 when i try call function <b>Live Auction</b> from ITS the page error : Internal Server Error 500! java.lang.NullPointerException      at com.sap.srm.la.server.util.UMAuthenticator.checkSSOC

  • Open Hub API

    I am trying to export data from BI (version 2004s, SP 11 on an Oracle DB) to an external SQL Server database using OpenHub's third party API. Can anyone give me an example on how to use the API? My ABAP skills are not very solid, so the more details