Blog for Oracle Database, EBS and OCI (Oracle Cloud Infrastructure) Setup and Administration.
Showing posts with label Oracle Forms. Show all posts
Showing posts with label Oracle Forms. Show all posts
Monday, March 23, 2020
How to open a .JNLP file (Launch forms using Java Web Start) ?
Assumptions:
1. Java is already installed on your machine.
2. Your EBS form sessions are JWS enabled.
How to open a JNLP file:
1. Login to E-Business Suite.
2. Open a form.
3. It downloads frmservlet.jnlp file into your downloads folder.
4. Right-click on the file and choose Open with then click Choose another app.
5. If you see Java (TM) Web Start Launcher in this list (you may need to click More apps to expand the list), select it and check the box that says Always use this app to open .jnlp files then click the OK button.
6. If Java (TM) Web Start Launcher is not in the list, check the box that says Always use this app to open .jnlp files then click Look for another app on this PC.
Navigate to the following location:
C:\Program Files (x86)\Java\jreXXXX\bin
XXXX represents a number that will vary based on the version of Java installed on the computer, for example: jre1.8.0_181.
Select the file named javaws.exe and click Open.
7. Going forward, all .jnlp files will open using Java Web Start.
Tuesday, November 13, 2018
Unable To Run Frmf2xml.Sh or JDAPI Without X Window Display
Issue Details:
Unable to generate xml file using form2xml option, using below command:
$/appl/apps/tech_st/10.1.2/bin/frmf2xml.sh WGCLIENTAPPR.fmb
Oracle Forms 10.1.2 Forms to XML Tool
Copyright(c) 2001, 2005, Oracle. All rights reserved.
Processing module WGCLIENTAPPR.fmb
Error initialising the Forms Jdapi:
_jni_initialize: Failed to create new forms context
Solution:
Reference document - Oracle Doc ID 1312459.1
Set the DISPLAY environment variable so that it points to a valid X server
or
set the environment variable FORMS_API_TK_BYPASS to true.
I did as shown below and it created a xml file.
export FORMS_API_TK_BYPASS=true
$/appl/apps/tech_st/10.1.2/bin/frmf2xml.sh WGCLIENTAPPR.fmb
Oracle Forms 10.1.2 Forms to XML Tool
Copyright(c) 2001, 2005, Oracle. All rights reserved.
Processing module WGCLIENTAPPR.fmb
WARNING: Item OBJ1 - all ListItemElements must have an Index, Name and Value.
WARNING: Item OBJ2 - all ListItemElements must have an Index, Name and Value.
WARNING: Item OBJ4 - all ListItemElements must have an Index, Name and Value.
WARNING: Item PROP - all ListItemElements must have an Index, Name and Value.
XML Module saved as WGCLIENTAPPR_fmb.xml
Unable to generate xml file using form2xml option, using below command:
$/appl/apps/tech_st/10.1.2/bin/frmf2xml.sh WGCLIENTAPPR.fmb
Oracle Forms 10.1.2 Forms to XML Tool
Copyright(c) 2001, 2005, Oracle. All rights reserved.
Processing module WGCLIENTAPPR.fmb
Error initialising the Forms Jdapi:
_jni_initialize: Failed to create new forms context
Solution:
Reference document - Oracle Doc ID 1312459.1
Set the DISPLAY environment variable so that it points to a valid X server
or
set the environment variable FORMS_API_TK_BYPASS to true.
I did as shown below and it created a xml file.
export FORMS_API_TK_BYPASS=true
$/appl/apps/tech_st/10.1.2/bin/frmf2xml.sh WGCLIENTAPPR.fmb
Oracle Forms 10.1.2 Forms to XML Tool
Copyright(c) 2001, 2005, Oracle. All rights reserved.
Processing module WGCLIENTAPPR.fmb
WARNING: Item OBJ1 - all ListItemElements must have an Index, Name and Value.
WARNING: Item OBJ2 - all ListItemElements must have an Index, Name and Value.
WARNING: Item OBJ4 - all ListItemElements must have an Index, Name and Value.
WARNING: Item PROP - all ListItemElements must have an Index, Name and Value.
XML Module saved as WGCLIENTAPPR_fmb.xml
Subscribe to:
Posts (Atom)