Tuesday, April 26, 2011

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.

No comments:

Post a Comment