Missing responsibilities in R12.1.3
Oracle Workflow Cartridge - Version 12.1.3 to 12.1.3 [Release 12.1]
Information in this document applies to any platform.
SYMPTOMS
When a new responsibility is added, it doesn't show up in the home page. The same problem happens even after clearing cache and removing cookies. Workflow Directory tables don't show corruption.
CAUSE
LONG_RUNNING_JVM parameter was set to FALSE. TRUE is recommended value for R12.1.3.
This was the value for this parameter.
$ cd $ORA_CONFIG_HOME/10.1.3/j2ee/oacore/config
$ grep -i long_running oc4j.properties
LONG_RUNNING_JVM=false
Since the cache was not refreshed, the responsibilities didn't show up in the home page.
SOLUTION
To implement the solution, please execute the following steps:
1. Change the LONG_RUNNING_JVM parameter to TRUE in the context file and run the autoconfig
2. Make sure the change is propagated to oc4j.properties
$ cd $ORA_CONFIG_HOME/10.1.3/j2ee/oacore/config
$ grep -i long_running oc4j.properties
3. Bounce oafm
sh $ADMIN_SCRIPTS_HOME/adoafmctl.sh stop
sh $ADMIN_SCRIPTS_HOME/adoafmctl.sh start
4. Retest the issue.
5. Migrate the solution as appropriate to other environments.
This comment has been removed by a blog administrator.
ReplyDelete