Problem changing default key bindings using Oracle Terminal

Hello,
I'm facing a problem changing default key bindings using Oracle Terminal. I changed
some bindings, saved them in forms60/fmrusw.res, started the generation and saved again.
I thought that's it but it wasn't. It took no effect at all in Forms (even after recompilation) although reopening the file in Terminal showed the changes. I'm using Forms in German, which means that even the key bindings displayed in Forms are translated i.e. STRG+F1 instead if CTRL+F1,
but I can't find a german version of this resource file, so i think it's the same resource file for all supported languages. But what is needed for the changes to take effect ?
Thanks in advance
STD
null

Hi,
is it client/server you are working?
if so you should not be using the fmrusw.res file because I guess your NLS_LANG is German_Germany.WE8ISO8859P1 or something like that. This means the terminal that is being opened is fmrdw.res instead of fmrusw.res and this file should be edited using Oracle Terminal.
if you are working via the web implementation than you can open the file fmrweb.res in a text editor and change the keybindings in there. If you need to have the PC like key bindings on the web just open the fmrpcweb.res and see if it contains the German texts. If so you can either copy this file over the frmweb.res file or you can specify term=fmrpcweb.res in the serverargs parameter.
Hope this helps.
Kind regards,
Frank van der Borden
Oracle Support Services
Netherlands

Similar Messages

  • Granularity of change rules in CDC (using Oracle streams) at columns level.

    Is it possible to implement granularity of change rules in CDC (using Oracle streams) at columns level.
    E.g. table abc with columns a1, b1, c1 where c1 is some kind of auditing column. I want to use CDC on table abc but want to ignore changes on c1.
    Is it possible? My other option is to split table abc into a child table that has the Primary key and c1 only but it needs additional table and joins.
    Thanks
    Shyam

    The requirement can be implemented by a simple trigger.
    You seem to plan to kill a mosquito by using a nuclear bomb.
    Sybrand Bakker
    Senior Oracle DBA

  • Problem with function keys while using Terminal to connect to UNIX host

    We are trying to use macs at my office, but we've hit a big roadblock. Our company software runs on a UNIX server, and until now everyone in the company uses either dedicated UNIX terminals, or terminal emulation software in windows. I was thrilled to learn that we could use the terminal in OSX to connect to the server, and it did not take long to get it to work.
    The problem is the function keys. Almost all of the menu options in our company software require the use of the function keys, F1-F10. I was able to access F9 and up by pressing command-F9, etc. but we're now having issues with F3 and F4.
    The computer in question is an intel macbook, and we have been using the fn key of course. The specific problem they showed me was with F3. In the software, it is supposed to lauch an extra menu, but pressing fn-F3 on the macbook results in an error ("number required", which is the message it would normally return if we tried to press return).

    Your problem is two-sided, I think. The first is that you need to set Terminal to send the right escape sequence. This is done with the Inspector (CMD-I) and selecting Keyboard. Get the correct key mapping in there. The other side is to make sure the system isn't intercepting your intended keystroke, so go into System Preferences->Keyboard & Mouse->Kwyboard shortcuts and make sure that the bindings you're using aren't enabled.

  • Control-k key binding broken. How can I check and change my key bindings?

    I use the Terminal app a lot. Unfortunately I am not able to use the control-k shortcut to cut lines in the terminal anymore. How can I check (and change) the Terminal key bindings?
    Thank you!

    Basing on your input, you should get the following values:
    1) session keys
    SK_ENC: 6DCE2A99BACB5207A7A96A92F114D66C
    SK_MAC: 0D446132B168F75CD6F0A780693A4DD3
    SK_DEK: 19F7B0F94837F32874B29B5EFB7809F6
    2) host cryptogram
    1B781553209748EA
    3) Retail MAC
    01761103B810F00E
    Summing up, the External Authenticate command should have the following value:  84 82 01 00 10 1B781553209748EA 01761103B810F00E.
    Try to compare it with your results.
    Regards

  • Key Bindings using the arrow keys

    Following is some code that allows you to move a component around the screen using the arrow keys. I've noticed a problem and I'm just wondering if its Java or my keyboard.
    Lets start with an example that works:
    Press the down and right keys. Then press either the up or left key. The image moves proving that it supports 3 keys.
    Now for the problem:
    Press the up and left keys. Then press either the down or right key. Three things to notice:
    a) the direction doesn't change when the third key is pressed
    b) no output is displayed, so the ActionListener is not being invoked
    c) after a short time, the program starts beeping
    Now try rerunning the code after removing the comments that assign the key bindings to the "a, s, d, f" keys. Redo the above test and it works even if all four keys are pressed.
    I don't remember this problem when I wrote the code a while ago, but I did recently get a cheap new keyboard so I'm just wondering if the problem is my keyboard or whether its a quirk with Java.
    You can download Duke from here:
    http://java.sun.com/docs/books/tutorial/uiswing/examples/components/LayeredPaneDemoProject/src/components/images/dukeWaveRed.gif
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class KeyboardNavigationProblem implements ActionListener
         private JComponent component;
         private int deltaX;
         private int deltaY;
         private Timer timer;
         private int keysPressed;
         private InputMap inputMap;
         public KeyboardNavigationProblem(JComponent component, int delay)
              this.component = component;
              this.deltaX = deltaX;
              this.deltaY = deltaY;
              timer = new Timer(delay, this);
              timer.setInitialDelay( 0 );
              inputMap = component.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
         public void addAction(int keyCode, String description, int deltaX, int deltaY)
              new NavigationAction(keyCode, description, deltaX, deltaY);
         public void updateDeltaX(int delta)
              deltaX += delta;
         public void updateDeltaY(int delta)
              deltaY += delta;
         public void actionPerformed(ActionEvent e)
              int componentWidth = component.getSize().width;
              int componentHeight = component.getSize().height;
              Dimension parentSize = component.getParent().getSize();
              int parentWidth  = parentSize.width;
              int parentHeight = parentSize.height;
              //  Determine next X position
              int nextX = Math.max(component.getLocation().x + deltaX, 0);
              if ( nextX + componentWidth > parentWidth)
                   nextX = parentWidth - componentWidth;
              //  Determine next Y position
              int nextY = Math.max(component.getLocation().y + deltaY, 0);
              if ( nextY + componentHeight > parentHeight)
                   nextY = parentHeight - componentHeight;
              //  Move the component
              component.setLocation(nextX, nextY);
         class NavigationAction extends AbstractAction implements ActionListener
              private int deltaX;
              private int deltaY;
              private KeyStroke pressedKeyStroke;
              private boolean listeningForKeyPressed;
              public NavigationAction(int keyCode, String description, int deltaX, int deltaY)
                   super(description);
                   this.deltaX = deltaX;
                   this.deltaY = deltaY;
                   pressedKeyStroke = KeyStroke.getKeyStroke(keyCode, 0, false);
                   KeyStroke releasedKeyStroke = KeyStroke.getKeyStroke(keyCode, 0, true);
                   inputMap.put(pressedKeyStroke, getValue(Action.NAME));
                   inputMap.put(releasedKeyStroke, getValue(Action.NAME));
                   component.getActionMap().put(getValue(Action.NAME), this);
                   listeningForKeyPressed = true;
              public void actionPerformed(ActionEvent e)
                   if (listeningForKeyPressed)
                        updateDeltaX( deltaX );
                        updateDeltaY( deltaY );
                        inputMap.remove(pressedKeyStroke);
                        listeningForKeyPressed = false;
                           if (keysPressed == 0)
                                timer.start();
                     keysPressed++;
                   else // listening for key released
                        updateDeltaX( -deltaX );
                        updateDeltaY( -deltaY );
                        inputMap.put(pressedKeyStroke, getValue(Action.NAME));
                        listeningForKeyPressed = true;
                        keysPressed--;
                           if (keysPressed == 0)
                                timer.stop();
                   System.out.println(KeyboardNavigationProblem.this.deltaX + " : "
                   + KeyboardNavigationProblem.this.deltaY);
         public static void main(String[] args)
              JPanel contentPane = new JPanel();
              contentPane.setLayout( null );
              JLabel duke = new JLabel( new ImageIcon("dukewavered.gif") );
              duke.setSize( duke.getPreferredSize() );
              duke.setLocation(100, 100);
              contentPane.add( duke );
              KeyboardNavigationProblem navigation = new KeyboardNavigationProblem(duke, 100);
              navigation.addAction(KeyEvent.VK_LEFT, "zLeft", -5, 0);
              navigation.addAction(KeyEvent.VK_RIGHT, "zRight", 5, 0);
              navigation.addAction(KeyEvent.VK_UP, "zUp", 0, -5);
              navigation.addAction(KeyEvent.VK_DOWN, "zDown", 0, 5);
    //          navigation.addAction(KeyEvent.VK_A, "zLeft", -5, 0);
    //          navigation.addAction(KeyEvent.VK_S, "zRight", 5, 0);
    //          navigation.addAction(KeyEvent.VK_D, "zUp", 0, -5);
    //          navigation.addAction(KeyEvent.VK_F, "zDown", 0, 5);
              JFrame frame = new JFrame();
              frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              frame.setContentPane( contentPane);
              frame.setSize(800, 600);
              frame.setLocationRelativeTo( null );
              frame.setVisible(true);
    }

    if you hold down left and right (so it doesn't move), down works, but not up.
    hold up/down, right works but not left.Yes, the problem only seems to be when the up and left in combination with the right or down key is pressed.
    num lock off - use the number pad arrow keys and all works OK Thats interesting, I didn't notice that. Although it just confuses the issue as to what the problem is.
    So it appears to me that:
    a) left + up + down, and
    b) left + up + right
    are special key combinations that are intercepted by either the OS or the JVM. Do these key combinations ring a bell to anybody?
    I'm use JDK1.4.2 on XP. I wonder if other OS will have the same problem?
    Again, this isn't a real, problem, just more of a curiosity. Thanks,

  • Default Key Bindings

    Hi,
    While changing some keys, I messed my default StandardKeyBinding.dict, can someone upload theres so I can restore it?
    Thanks in advance.

    we can't upload this file as posting any part of OS X is illegal and would definitely violate the rules of this forum. anyone who tries will have their post promptly removed. However, you should be able to retrieve this file from the leopard install DVD using Pacifist
    http://www.charlessoft.com/

  • Change default key size on non Domain joined CA.

    Hello,
    I have one standalone non domain joined CA I would like to change the default key size of all issued certs to 2048.  Since it is a stand along, there are no AD template to modify.  Can this be changed in the registry?
    Shawn

    CAPolicy.inf is the way to go.
    See the following thread
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/ce001d8f-c722-4429-83cb-328b92876292/how-to-change-root-certificate-keys-length-and-validity-period?forum=winserversecurity
    Hth, Anders Janson Enfo Zipper

  • Problem in connecting to database using oracle jdbc thin driver

    hi
    i am trying to connect to a database using oracle thin driver.
    i am getting following error:
    java.sql.sqlexception:Io exception: the network adapter could not establish the connection
    Io exception: the network adapter could not establish the connection
    the connection string has the property of using a dedicated server
    for this reason i have put USE_DEDICATED_SERVER=ON in sqlnet.ora file...
    we did not face this problem while connecting to other databases which do not have the property of dedicated server in their connection string in tnsnames.ora file.
    please suggest a solution for this.
    thanks and regards,
    asif

    If you are using the thin driver, sqlnet.ora does not come into play. None of Oracle networking does. That is one of the great things about using the thin driver, no need to have the client installed.
    That error is due to incorrect connection info you are supplying or the machine you are connection from can't ping the machine it is trying to connect to.

  • Capture Changes from Sql Server  using Oracle Streams  - Destination Oracle

    Is it possible to capture changes made to tables in Sql Server database and propagate the changes to Oracle Database using Oracle Streams and Heterogeneous Gateway. I see plenty of information about pushing data from Oracle to Sql server, but I haven't been able to find much information about going the other way. Currently we are using sql server 2005 replication to accomplish this. We are looking into the possibility of replacing it with streams.

    the brief understanding i have is that there is nothing out of the tin that Oracle provides to stream between SQL Server and Oracle. The senario is documented in Oracle docs however and says you need to implement the SQL Server side to grabe changes and submit to Oracle stream queues.
    i'm sure i've seen third parties who sell software to do this.
    If you know otherwise please let me know. Also wasn;t aware one could push from SQL Server to Oracle. Is this something only avail in SQL Server 2005 or does 200 also have it? How are you doing this?
    Cheers

  • XML queries... Change the code from using Oracle db into MS SQL

    Hi, I am a new begginer in this field. I came accross to an article that focuses in Oracle's XSU approach.
    Currently, i am trying to convert the java code from using Oracle db to MSSQL db. The code has shown below:
    import javax.naming.*;
    import javax.sql.*;
    import java.sql.*;
    import oracle.xml.sql.query.*;
    public class testxml
         public static void main(String args[]) throws SQLException, NamingException
         String tabName = "emp";
         int maxRows = 3;
         Context ctx = new InitialContext ();
         DataSource ds = (DataSource) ctx.lookup ("MyOra");
         Connection conn = ds.getConnection ();
    OracleXMLQuery qu = new OracleXMLQuery (
    conn, "select EMPNO, ENAME from " + tabName);
    qu.setMaxRows (maxRows);
    qu.setRowsetTag ("EMPLOYERS");
    qu.setRowTag ("PERSON");
    String xmlString = qu.getXMLString();
    System.out.println (xmlString);
    conn.close ();
    Currently, i am having difficulties to change the "bold" area that uses Oracle into MS SQL as my current application is using MS SQL as the database.
    Please help and need more advices from all of you. Thank You

    I resolved this issue myself. For the answer please message me.

  • Problem in implementing Pub/Sub using Oracle AQ

    Hi,
    I am using 10.1.2.0.0 Process Manager
    I have created a publishing service which publishes a PAYLOAD as well as two header fields (Header holds the name of TARGET_SYSTEM and SOURCE_SYSTEM). In the receipients list I specified two names i.e. Bob and Jon with a comma seperator.
    I published a message to a queue and now I can see data in the queue table.
    Then I created two subscribing services (one for Bob and another for Jon).Here I specified the Consumer name as Jon in one service and Bob in another.
    When I deploy the subscription services and run them, it is not subscribing to the queue.
    Is there any additional step I need to perform in order to create the Consumer/ Subscriber?
    Regards,
    Vikas

    Hi,
    This is vikas again.
    Does some one know where to find out the document that can explain Using Oracle AQ in BPEL and steps to create rule based Consumer?
    Thanks & Regards,
    Vikas

  • Problem changing default webroot of built in server

    I installed CF 8 yesterday, and am running into a problem
    changing the webroot. As per the instructions at
    http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=webservmgmt_3.html#10239 3,
    I have modified the lines in jrun-web.xml as follows:
    Old entry:
    <virtual-mapping>
    <resource-path>/WEB-INF</resource-path>
    <system-path>C:/ColdFusion8/wwwroot/WEB-INF</system-path>
    </virtual-mapping>
    New entry:
    <virtual-mapping>
    <resource-path>/*</resource-path>
    <system-path>C:/ColdFusion8/spayflorida</system-path>
    </virtual-mapping>
    When I browse to
    http://localhost:8500/, I get
    "index of" and a listing of the files in the new folder. If I click
    on index.cfm, I get the following error:
    404
    java.io.FileNotFoundException
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:94)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:284)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
    at
    jrun.servlet.http.WebService.invokeRunnable(WebService.java:172)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    The only work around is to shuffle the web files back and
    forth as I work on different sites which is quite a pain.
    http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=webservmgmt_3.html#10239 3

    Hi Oren,
    the corresponding parameter is called metadata directory. You can look it up within BEx WAD --> Tools --> Settings --> Metadata Directory (over there just as display parameter).
    If you have to customize the directory you are to set the environment variable BEXWAD_METADATADIR in your operational system (Start - Settings - System settings - System - Advanced - environment variable). Just set the new folder according to your needs in the field value.
    Usually restarting WAD the next time the new folder is taken, perhaps you have to refresh your metadata (again: BEx WAD --> Tools --> Settings --> Metadata Directory) and restart WAD. The first time WAD starts the files have to be copied to the new directory which can take some time.
    If there are problems/questions let us know.
    Best Regards,
    Marcel

  • Can i change default splash screen in Oracle ADF mobile

    hi,
    can i change the default splash screen (i.e. the Oracle screen that shows up) when you open the app in mobile?
    i want to use my own custom splash screen.
    regards,
    ad

    i found that at,
    http://docs.oracle.com/cd/E35521_01/doc.111230/e24475/deploying.htm#CHDGEJAI
    thanks,
    ad

  • Problem Changing a key field lenght

    Friends,
    I've changed the data element of the object field whitch is one of the keys in the Ztable.
    After that, automaticly, all the declarations were changed 'couse all the container variables were pointing to this table field.
    I thought it isn't get problem but it got problems to my woakflow. The first task didn't return an result that I made to an table and after that  others tasks didn't work to.
    I'm sure that the declarations are poitting ti this (workflow key) field I changed the element.
    I think I saw all the things.... What else can I do ?
    Sorry for my bad english. I'm brazilian.

    Hi Ismael,
    Here it's all right. The wheather is cold and rainy here in Rio de Janeiro, but it isn't normal here. Here usually is sunny and hot.
    By the way, Thanks for your help. Now it's working ok. I agree with your answer, because I simply deleted the bindings and made it again and after that it began to work alright again.
    thanks.

  • How do i change default sound when using AirPlay Display on Mavericks

    So i am using a TV with Apple TV attached as a second display for watching movies etc in the background
    Everytime i turn on the setting to enable to the display, it sets the Apple TV as my default sound and i have to go to settings to manually re-select my speakers attached to my iMac. Is there anyway to change this so it leaves the sound from my Mac as the default sound when enabling the screen.

    I looked into this a little more carefully.  It's not the Guest account.  It clearly indicates "Managed".
    Searching for more information, this is something related to Parental Control, but I can't seem to get this account to take on the characteristics of either an administrator or user role.

Maybe you are looking for

  • Slideshow automatic start option

    I am wondering if it would be possible to start a slideshow automatically as the pages is loaded. i have created one using photoshop. I used the Flash Gallery 2 under the File>Automate>Web Photo Gallery option. I want it to sit on the homepage and pl

  • Cancelling creative cloud membership

    I WANT TO CANCEL MY CREATIVE CLOUD SUBSCRIPTION. WHY I CANNOT DO THIS BY EMAIL OR WITHIN THE PLAN MANAGEMENT SITE IS A TOTAL MYSTERY. ONLY CHAT (WHERE THERE IS NO ONE), PHONE WHICH I DO NOT WANT AND FORUMS (REALLY) ARE OPTIONS.

  • Software Update can't find server, but internet connection is good

    The Software Update function does not work - "Can't connect to Update Server", and Safari will not load any pages - "CAn't connect to server...". However, Network Diagnostics says that I am connected to the internet, as does Firefox - it loads pages

  • Blue Screen After Waking up from sleep.....

    So whenever I put put my screen dowm(the laptop is on) and after while i open my screen. There are blinking black colored lights and after while a blue screen appears and says "There is a problem in the computer or installed drivers or in a update so

  • Daylight Savings Time problem

    I live in Saskatchewan (SK), a province in Canada that does not observe daylight savings time (we stay on central standard time year round). My iPhone calendar is set to a city in our province (Regina). Looking at next week's calendar entries, they a