We have oracle forms 12.2.1.4 on OCI and for some reason users (running forms application from Mac OS) can not type '@' in a form.
Strange thing is that i can enter '@' in every Mac OS application, java control panel, this small java program:
import java.awt.*;
class TextFieldExample{
public static void main(String args[]){
Frame f= new Frame("TextField Example");
TextField t1,t2;
t1=new TextField("Welcome to Javatpoint.");
t1.setBounds(50,100, 200,30);
t2=new TextField("AWT Tutorial");
t2.setBounds(50,150, 200,30);
f.add(t1); f.add(t2);
f.setSize(400,400);
f.setLayout(null);
f.setVisible(true);
}
}
and in java applet with firefox.
Running forms with webstart or fsal, it is not possible to type '@' in a form.
Maybe it is related with this Forms 12c - Access Keys Do Not Work on Apple Mac Computers Using Forms Standalone Launcher ( Doc ID 2564969.1 ).
Is there any way to debug this problem?
Regards