imsid19 / solution-treasure

Hello World, that's my first repo on gitHub
0 stars 0 forks source link

Java Forms error (FRM-92101) during JWS (JAVA WEB START) implementation on EBS R12.1.3 #1

Open imsid19 opened 2 years ago

imsid19 commented 2 years ago

Hello DBAs,

Recently I was working on JWS implementation on few of our EBS instances , to enable them with Java Web Start, users can launch a Java application by clicking a link in a web page.

Post implementation we faced error in launching forms .

4: Forms issue (ERROR code : FRM-92101 )

ERROR:

image

In Application.log:

cd $INST_TOP/logs/ora/10.1.3/opmn/opmn*

/r12_tst/u04/appl/apps/tech_st/10.1.2/lib32/naect.o /r12_tst/u04/appl/apps/tech_st/10.1.2/lib32/naedhs.o -lclntst10 -lsnls10 -ljvm -L/usr/lpp/X11/lib/R6 -L/usr/lpp/X11/lib/R6/Motif2.1 -lXm -lXt -lX11 -lm cat: cannot open /r12_tst/u04/appl/apps/tech_st/10.1.2/lib32/ldflags cat: cannot open /r12_tst/u04/appl/apps/tech_st/10.1.2/lib32/ldflags

Cause:

The “ldflags” has been created as a link in the below directory. $ORACLE_HOME/lib

FIX:

Rename the file “ldflag” and copying “ldflags” from working instance and then follow the steps below .

  1. Stop APPS services
  2. rm -f $ORACLE_HOME/lib32/ldflags
  3. ln -s $ORACLE_HOME/lib/ldflags $ORACLE_HOME/lib32/ldflags
  4. cd $ORACLE_HOME/forms/lib32; make -f ins_forms.mk install
  5. Using adadmin - Generate product JAR files
  6. Using adadmin - Relink Applications Programs
  7. Start APPS services.

Please comment and let me know if this solution is handy for you . Thanks you !

imsid19 commented 2 years ago

It's quite useful during JWS implementation , hope you guys also find this solution useful .