Tuesday, April 26, 2011

XML Error after pressing Preview Button in MS word

PROBLEM
When XML Preview button is pressed in MS Word after loading XML data, The following error is occurred:
 Error No:53
Description: File Not Found
Please confirm that:

1) A Java runtime version 1.3 or later  is installed Correctly
2) The Java executable is accessible through the Windows PATH or the Java Home directory is entered in the Preview tab of the Options dialog
To Solve this
Go to BI Publisher menu in Word.
Tools - > options -> preview tab.
Java home should be selected there. Confirm that the path is correct.













Description
This solved my problem.

OA Frame Work Errors while Working on 9i-2

Problem


In oracle j developer 9i  the structure window is not being show, when it is clicked from view--> structure window, some weird error is coming :


java.lang.NullPointerException at oracle.ideimpl.explorer

 Solution

·  You can try to wipe out any ".layout" files that you have in your JDeveloper system directory. These can be found in <JDEV_HOME>/jdev/system or <JDEV_HOME>/jdev/system9.0.X .X.X depending on which version of JDeveloper you are running.

Wiping out a .layout file is harmless. It contains only a record of which windows were opened, and what locations they were opened at. Wiping them out simply causes JDeveloper to default to its out of the box settings. So, if you repositioned (i.e. "docked") any windows for a particular layout, you will lose those settings

Solution worked for me

Editing .layout is removed  from <JDEV_BIN>/jdev/system9.0.X .X.X  and it is working fine for me.

OA Frame Work Errors while Working on 9i

Problem

Whenever a page is run from Jdeveloper  9i the page is erroring out and error is coming as follows:

oracle.apps.fnd.framework.OAException: Application:FND, Message Name: FND_GENERIC_MESSAGE. Tokens:MESSAGE =oracle.apps.jtf.cache.CacheLoaderNotFoundException;


Solution


In jdeveloper
Go to Project-->project Settings--> Runner  Java Options


The existing path there:
-Xbootclasspath/p:D:\JDEVELOPER9i\jdevbin\jdev\appslibrt\ojdbc14.jar;D:\JDEVELOPER9i\jdevbin\jdev\appslibrt\nls_charset12.zip -DFND_JDBC_STMT_CACHE_SIZE=200 -DCACHENODBINIT=true  -DRUN_FROM_JDEV=true -mx256m


From this remove DCACHENODBINIT=true and paste the remaining

ex: -Xbootclasspath/p:D:\JDEVELOPER9i\jdevbin\jdev\appslibrt\ojdbc14.jar;D:\JDEVELOPER9i\jdevbin\jdev\appslibrt\nls_charset12.zip -DFND_JDBC_STMT_CACHE_SIZE=200 -DRUN_FROM_JDEV=true -mx256m

Description

This error i found while i was working on VPN. The solution provided above  solved my problem.