Suppress specific key beeing processed

Hi,
does anybody now an elegant way of suppressing a specific key? In my case I dont wont the CAPS LOCK Key beeing processed in such way that it is switched on or off. Pressing the Key should be completly ingnored and this should work Application wide not only for one component.
Any Ideas?
Thanks.

If your key is not registered to generate an event I don't see the problem.
However if what you want is that the key should be completely disabled ie. the caps lock light on your keyboard doesn't turn on then this should probably be done in native code (if it is possible that is without breaking your keyboard :-) ) because I don't think Java can handle such low level tasks...
By the way are you using? java.awt.event.KeyListener or javax.swing.KeyStroke?
The latter avoids switch case statements to determine what key has been pressed (if I remember correctly).
Thanks,
Nikolas.

Similar Messages

  • Suppress Repeated Key Values in EP

    Hi Experts,
    In BEx, i am able to "Suppress Repeated Key Values" via Query Properties > Display Options.
    However, when i execute the same report in EP, and in the context menu (right click) of the query, choose Enhanced Menu > Query Property, there is no option for "Suppress Repeated Key Values". Why is this so? Is there a way for such?
    My client is requiring it, but their access is limited to EP.
    Kindly, provide assistance.
    Thank you very much.
    julius

    Hi Julius
    In the WAD, if you use the properties pane web item and set data binding to the analysis web item, when you run the report on the portal you should see the settings of the analysis (table), under Data Specific setting you can toggle the "Display Repeated Texts" option, this functionality is also available in the setting link in the 0ANALYSIS_PATTERN default web template.
    Hope this helps
    Josh

  • How to get the assignees for a specific role in process in BPM 11g

    Hi, Gurus,
    I am using BPM 11g. I am trying to retrieve all the assignees for a a specific role in process. It will be a parameter for a business rule to do further routing rule. But it seems there is no way to get the information. I found that there are Identity Service Functions in Human Task Assignment. But Identity Service Functions are not listed in Business Rule Activity, neither listed in other activities except Human Task Assignment. I cannot get the assignees in my process.
    Is there any way to get all the assignees for a role? I also tried to retrieve the assignees out engine with Worklist API, but it cannot get either. Actually we can get all the assignees information in automatic activity in OBPM 10g. Maybe I am still not familiar with 11g. Any advice is appreciated.
    FYI:
    My scenario:
    Suppose we have a role named ApprovalTeam. In this role, there will be several different department manager (BPM User) added in the role through Workspace. At run time, a request (With department info) with go through the approval by ApprovalTeam. A Business Rule Activity with decide which department manager will approve this request. Different department request will be dispatched dedicate managers, not all the managers in the role. I have an external JavaBean to get the department information from LDAP. To do the routing, I also need know all the department managers (BPM User) in the ApprovalTeam role. Then I can compare which department manager is matched with the request and assign the task to him.
    Thanks a lot,
    James
    Edited by: James Piao on May 31, 2010 6:25 PM

    or this?
    SQL> select text from ALL_VIEWS
      2  where VIEW_NAME
      3  ='EMP_VIEW';
    TEXT
    SELECT empno,ename FROM EMP
    WHERE empno=10

  • Customer-Specific Key Figure and MCI3 analysis report

    Hi,
    We have created a "Customer-Specific Key Figures" in customizing and mapped the key with value category. But this new defined key figure is not available in the report MCI3.
    How to get this figure in the analysis report MCI3 etc , i.e. how to update the information structure S115.
    Regards

    Hello,
    You have to develope the new programme using that info structure and update that new value field in your customising logic programe .
    Regards,
    Rakesh

  • Assigning instruments to specific keys on a USB keyboard

    Is there a way to assign certain instruments to specific keys on a USB keyboard?
    I use an M-Audio Keystation 49e USB keyboard. It works fine, but I have no experience with MIDI and don't know what the "advanced functions" button on the keyboard allows me to do, although I'm sure with some pointers I can figure it out.
    (Some weeks back xs4ls recommended the JamPack 3 with the Studio Toolkit. Thanks for that recommendation. The stuff really improves upon the stock drumkit software instruments. But in the Studio Toolkit, certain instruments I might like to use together are often located more octaves apart than I can play at one time. The regular kits are generally organized on the keyboard such that I can play them "live" just like I do my actual drumset. This is how I prefer to lay down my drum parts. I'm also interested in assigning drum sounds from a various software kits to save as my own custom kit, if possible.)

    GB3 has a "programmable keyboard" feature that isn't as slick as the stock instruments, but it's better than nothing! (one of the good features of GB3)
    I found a bunch of old Qbert (the video game) noises on line, and created my own instrument with those. Pretty sweet.
    X
    p.s.
    Happy you liked the suggestion. I wish I could take credit for making the Jam Pack......

  • Application specific key-value pairs in jndi.properties

    Hello,
    Can I specify my application specific key-value pair in jndi.properties?
    I tried something like this
    java.naming.factory.initial=.jndi.WLInitialContextFactory
    java.naming.provider.url=t3://localhost:7001
    myVar=myVal
    When i tried looking up "myVar" from my client program, I got an error.
    The other parameters like weblogic.jndi.WLInitialContextFactory are picked up.
    Anyhelp will be appreciated
    Vasim

    We have a similar problem.
    We would like to configure our PROVIDER_URL for a specific web application - not
    for the entire server. Since the URL should be different in development, test
    and production environments, we would prefer to just set it in the deployment
    descriptor. And we have a lot of code that just uses
    ctx = new InitialContext();
    when looking up EJBs, queues etc.
    Actually, to take the problem one step further, it should be expected that later
    we will have EJB's deployed on different machines/clusters - so we will actually
    need specific urls for each EJB.
    Is there a good way to do this? Or will we have to custom-develop our own jndi
    configuration standard using application parameters to set which JNDI provider
    each EJB should be looked up with?
    Alternativaely, can we "import" the JNDI trees of the app server in the JNDI tree
    of the web servers?
    So, how should we go about this?
    Robert Patrick <[email protected]> wrote:
    Vasim wrote:
    Hi Robert,
    You are right. But The object "myVar" which I am trying to look upis not in
    the JNDI tree nor am I interesed in binding it . But my requirementis that
    I have one application specific variable which I am trying to lookup and I
    dont want to have a separare config file for this..and hence the question..So, put the properties you want in the jndi.properties file and load
    the properties
    file from your code by doing something like this:
    Properties props = new Properties();
    ClassLoader cl = Thread.currentThread().getContextClassLoader();
    if (cl == null)
    cl = System.getSystemClassLoader();
    InputStream is = cl.getResourceAsStream("jndi.properties");
    props.load(is);
    Personally, I would not use this file and would create an application-specific
    file
    or, as Daniel suggested, define your properties as a System property
    and use
    System.getProperty("myVar").
    btw, is jndi.properties only for those objects which are bound to jnditree?
    jndi.properties is only used for creating the JNDI InitialContext. The
    whole idea
    of this file is that in remote client code (without the jndi.properties
    file), you
    need to do something like this to tell the JNDI classes how to connect
    to the JNDI
    provider:
    Properties props = new Properties();
    props.put(Context.PROVIDER_URL, "t3://myservername:7001");
    props.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
    InitialContext ctx = new InitialContext(props);
    but inside the server, you only need to do this because the server is
    the provider
    and already knows how to connect to itself:
    InitialContext ctx = new InitialContext();
    Therefore, the jndi.properties file allows you to externalize this property-setting
    code that sets up the properties to be passed to the InitialContext constructor
    so
    that the remote client code can now look exactly like the code inside
    the server.
    The InitialContext constructor will look for this jndi.properties file
    in your
    classpath and load it to get the necessary configuration information
    to determine
    how to connect to the JNDI provider.
    Hope this helps,
    Robert

  • Application specific key-value pair in jndi.properties

    Hello,
    Can I specify my application specific key-value pair in jndi.properties?
    I tried something like this
    java.naming.factory.initial=.jndi.WLInitialContextFactory
    java.naming.provider.url=t3://localhost:7001
    myVar=myVal
    When i tried looking up "myVar" from my client program, I got an error.
    The other parameters like weblogic.jndi.WLInitialContextFactory are picked up.
    Anyhelp will be appreciated
    Vasim

    Hello,
    Can I specify my application specific key-value pair in jndi.properties?
    I tried something like this
    java.naming.factory.initial=.jndi.WLInitialContextFactory
    java.naming.provider.url=t3://localhost:7001
    myVar=myVal
    When i tried looking up "myVar" from my client program, I got an error.
    The other parameters like weblogic.jndi.WLInitialContextFactory are picked up.
    Anyhelp will be appreciated
    Vasim

  • I am trying to connect my iMac with my MacBook What is the command keys and process in doing so. Have firmwre in place.

    I am trying to connect my iMac with my MacBook What is the command keys and process in doing so. Have firmwre in place.

    Here's the Apple Support article on Target Mode http://support.apple.com/kb/HT1661

  • How to deselect query property 'suppress repeated key values'

    hj gurus,
    In BEx analyser there is a query property 'suppress repeated key values' which can be de-selected.
    regards,
    Preety

    Hello preety.
    Is simple.
    In BEx query designer push the button designated by "query properties" (the 13 button from left to right).
    Go to the tab "Display" and mark the second option "Hide Repeated Key Values"
    And there you go.
    Please assign points.
    Diogo.

  • Isolating WebIntelligence ad hoc reports to specific Webi Report Processing Server

    Post Author: Lucia Chan
    CA Forum: WebIntelligence Reporting
    Has anyone successfully isolated WebIntelligence ad hoc reports to be processed by specific Webi Report Processing Server?  We need to enforce governance on the database side.  We can restrict scheduling for Webi reports to specific Webi Report Processing Server, but not for ad hoc reports.  Otherwise is there a way to do connection override for scheduled Webi reports?

    New version that's comming up SBO Bi4.0 will have bouilt in monitoring that will allow what you requesting.
    In the current product line - this is not possible, unless you just monitor WIReportServer.exe at OS level and alert when it's memory or CPU usage goest too high... (if memory reaches close to and above 1.7gb - you're going into troubles.)
    There are various fixes and improvements to Webi processing stability in recent fix and service packs, so if you're having webi instability - you should review latest FP fix issues list (in SMP to right of FP download there is an Info link - it leads to fixed issues docs).
    If you do not see your issue listed - open incident with support - let them investigate.
    Webi crashing when merging/unmerging dimentions sounds like a bug...

  • Industry specific verticle for Process Industry

    We have implemented MySAP ECC 6.00 in our company. Our company produces BOPP Film. We have implemented 6 modules FI,CO,PP,MM,SD and QM. In PP modules we stuck because of width. I want to ask whether there is any industry specific solution for Process Industry?
    Sudhir

    Hi Sandeep,
    Thanks for your prompt reply.
    I will explain you in detail.
    Our Company was started in 1980 to manufacture Bi-axially Oriented Polypropylene Films (BOPP) for the first time in India. Since inception we have maintained market leadership in the Indian market and also Continues to be largest BOPP film exporter from the Country. .
    In 1996 we have implemented AVALON erp. The implementor was TCS Hyderabad. Presently also it is running very fine but due to technical cnstraints, we decided to switch over to SAP.
    We are in process of implemening MySAP ECC6.00. Implementor is WIPRO. As our company is a Continious process industry we expect to implent the PPPI module.
    As far as our process is concerned first stage to produce a JUMBO roll. The width may be 1000 mm. Further these Jumbo rolls are slitted as per requirement from customer. Here the width part plays a major roll. The requirement from customer is in any width right from 64 mm to 500 MM. Let us say our product code is xyz with various width. Our main requirement is widthwise stock and widthwise costing. We do not want to incorporate the width in itemcode. How can this problem will be solved?
    Waiting for a feseable solution.
    Thanks Sudhir

  • [svn:fx-trunk] 7747: Remove override of focusInHandler since TLF now calls preventDefault on any nav keys it processes .

    Revision: 7747
    Author:   [email protected]
    Date:     2009-06-11 07:28:32 -0700 (Thu, 11 Jun 2009)
    Log Message:
    Remove override of focusInHandler since TLF now calls preventDefault on any nav keys it processes.
    QA Notes: we need to be sure to test RET keyboard input and navigation on AIR since the keyboard events are slightly different than for the player
    Doc Notes:
    Bugs: SDK-21552
    Reviewers: Gordon
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21552
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/primitives/supportClasses/RichEditable TextContainerManager.as

    Dropping down to the next line is normal behavior because Menus don't resize.  For what you want, you should probably find a good Responsive Menu system.
    http://responsive-nav.com/
    http://jasonweaver.name/lab/flexiblenavigation/
    http://www.projectseven.com/products/templates/pagepacks/dmm/affinity/menu-modes/index.htm
    Nancy O.

  • WAD question: fix each chart series to a specific key figure

    Hi All,
    I hope you can help.
    In WAD is it possible to fix each series in a chart to a specific key figure from the data provider (query)?
    We need to be able to do this because the opening position of our query has a number of hidden key figures, that are displayed later in navigation.
    Without being able to fix the series to key figures, in the opening view some key figures are appearing as columns rather than lines and vice versa.
    Thanks and regards
    IM

    Thanks for your help, Pcrao.
    My scenario is:
    I have 15 key figures in the columns of my query (data provider).
    The first 12 of these KFs are to be displayed as bars (columns) and the last 3 as lines in the chart of my web query.
    I can set this no problem in WAD.
    But my problem is that because a number of my key figures are set as hide in the query designer (to be unhidden later in navigation) the last three KF's are displaying (incorrectly) as bars until I unhide all KF's in the navigation.
    In other words, it seems to me that I need to fix each series in the chart editing to a specific key figure. But I don't know how.
    Thanks again and regards
    IM

  • Stop specific com object process

    I have set up a custom web site monitoring with command:
    New-Object -com InternetExplorer.Application
    Sometimes this IE process got stuck. How do I stop that specific iexplore process? I know I can use stop-process -name iexplore but how do I pin point that to that specific com object process and not some other ie process because I run several web site monitors
    in the same server and those are all unique processes.

    I found this solution, maybe it works:
    $IEProcess = [System.Diagnostics.Process]::Start("iexplore", "-noframemerging")
    Start-Sleep -Seconds 1
    $ie = $(New-Object -ComObject "Shell.Application").Windows() | ? {$_.HWND -eq $IEProcess.MainWindowHandle}
    $ie.quit()
    [System.Runtime.Interopservices.Marshal]::ReleaseComObject($ie)
    stop-process -id $IEProcess.id
    Remove-Variable ie
    Remove-Variable IEProcess

  • Card specific keys

    My card implements the mutual authentication. For that purpose the external application and the card must share the set of secret keys. The first key is relevant for encryption and the other for the MAC calculation. At this point I am putting these keys on the card during the personalization. These keys are the same for all cards. Now I am thinking is this secure enough. I read that it is recommended to use derived (card specific) keys such that only one card is affected if a key is compromised. How can I calculate the card specific keys? If I will have this, then if someone finds out the initial secret keys and the algorithm how the card specific keys are made, then the card is again compromised. Right?

    You said that the random key is more secure way. You mean that during the personalization I can generate random key on the card. The operating system takes care of the security of such object. But, this random key has to be shared with the external party which is communicating with the card. Both of them need it in order to establish the secure channel. At some point it has to be extracted and given to the terminal side. Right? Or the random key has to be generated on the perso dll during the personalization. Then the outside world has to have some kind of lookup table in which the relation token serial number, random key has to be stored and before executing the mutual authenticate method, the external party has to for the particular token serial number extract its random key. What if the secure channel has to be made from the middleware API that is installed on the user’s PC. If the lookup table is stored somewhere like HSM it is impossible use case because the user’s PC is located in his home. With random keys, each key would be generated at perso time and injected into the card manager with PUT KEY over a secure channel. You could use the unique card identifier as the label for the key in the HSM so there is no lookup table. You could use the same data you would use to diversify a key since it should also be unique. I am assuming you have some way of having a connection back to a HSM from the middleware? If not, this model sounds worrying to me. If you have your keys exposed to every client client then you are opening up a security risk. You can assume the client machine is secure.
    You said:
    It is easier to secure a single set of master keys (and rotate as required) that are used like this than a master key that is shared
    I did not understand how this will work. In case of mutual authenticate method. The external party is using one master secret key from the set of secret key set. When the command comes to the card, the card has to verify it. But how the card knows with which key the message is encrypted.If you have keys in a HSM you need some way of knowing what key to use. You could map cards to a master key. Some security organisations recommendations on key rotation and usage policies which are designed to limit the exposure of sensitive keys. It adds overhead but you gain additional security (if a key is compromised only a limited number of your cards are compromised).
    Cheers,
    Shane

Maybe you are looking for

  • How do I create this window effect?

    I was looking at this photo http://image.shutterstock.com/display_pic_with_logo/442024/442024,1297015560,3/stock-vecto r-download-button-set-vector-set-for-web-70603081.jpg trying to figure out how they get the little window to appear like that. I ca

  • Why are inbox mesgs being deleted when I close my e-mail program ?

    Hello. Thanks for your help. Every time I finish reading my inbox e-mails, then close the program, all the inbox messages are automatically deleted. When I open the inbox the next time, all messages that were in the inbox are gone forever. Thank you.

  • CTI OS desktop agent cannot answer call

    Hello All, I am seeking a suggession on a issue which seems to be lying with network. Agents are located in different location and all remaining Cisco components like ICM, CVP and CCM are in data center. Agent succesfully logs in via CTI os Dsktop ag

  • How to use Item Level security

    I am working on portal 9.0.2.6.18. I have a folder with 1000 items. I want to grant groupA access to 997 items and (Group B,GroupA) access to 3 items. How do i do this. Here is what i tried: 1.enabled item level security on folder 2.granted folder le

  • Access the detailed navigation link using webdynpro

    Hi, I have a requirement where we have two different DC's of which one is a standard DC and the other one is custom DC with one application in each of them.My requirement is to navigate to the other application in the second DC directly on clik of a