You are on page 1of 3

sns12pb56

*****************************************************************************
1.Autoconfig Error:
----------------
PL/SQL procedure successfully completed.
declare
*
ERROR at line 1:
ORA-00001: unique constraint (APPLSYS.AD_APPL_TOPS_U2) violated
ORA-06512: at line 32

Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64


bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
adadmprf.sh exiting with status 1
ERRORCODE = 1 ERRORCODE_END
.end std out.
.end err out.
AutoConfig could not successfully execute the following scripts:
Directory: /u01/apps/erpx1/inst/apps/erpx1_mcdeagaix948/admin/install
adadmprf.sh INSTE8_PRF 1
->Resolution:
-------------
select applications_system_name from applsys.fnd_product_groups;
update applsys.fnd_product_groups set applications_system_name = '<TARGET_INSTAN
CE>';
and run autoconfig again.
********************************************************************************
*****
2. Forms are not opening:
----------------------
After clone forms are not opening, throwing the below errors...
FRM-92101: There was a failure in the Forms Server during startup.
This could happen due to invalid configuration. Please look into the web-server
log files for details.
Details...
Java Exception:
oracle.forms.net.ConnectionException: Forms session<1>failed during startup:no r
esponse form runtime process
at oracle.forms.net.ConnectionException.createConnectionException(Unknown Source
)
at oracle.forms.net.HTTPNStream.getResponse(Unknow Source)
->Resolution:
------------
cd $ORACLE_HOME/lib32
ls -l ldflags --- check whether this link pointing to the currect environme
nt. If its not execute below..
ln -s $ORACLE_HOME/10.1.2/lib/ldflags ldflags
cd $ORACLE_HOME/forms/lib32
make -f ins_forms.mk install
********************************************************************************
**********
3. Login page error "Oracle error &ERRNO: &REASON has been detected in &ROUTINE"
--------------------------------------------------------------------------------
-
metalink note: 464072.1
select trigger_name, status from all_triggers where table_name = 'FND_USER';
alter trigger <trigger_name> disable;
SQL> select trigger_name, status from all_triggers where table_name = 'FND_USER'
;
TRIGGER_NAME STATUS
------------------------------ --------
ALR_FND_USER_0_108_UAR ENABLED
ALR_FND_USER_0_108_IAR ENABLED
SQL> alter trigger ALR_FND_USER_0_108_UAR disable;
SQL> alter trigger ALR_FND_USER_0_108_IAR disable;
********************************************************************************
**********
4. Blank login page issue:
alert log erro:
Errors in file /u02/oracle/erpd1/10.2.0/admin/erpd1_mcdeagaix952/udump/erpd1_
ora_26488986.trc:
ORA-04098: trigger 'APPS.WEB_TRACE_TRIGGER' is invalid and failed re-validati
on
application.log also reported some error referening the above trigger.
log file location: $INST_TOP/logs/ora/10.1.3/j2ee/oacore/oacore_default_group
_1/application.log
issue: some one has created the above trigger on some standard apps tables.
resolution: Disable the trigger.
********************************************************************************
*************
5. Login page displaying the below message while loggin in
Low-level Diagnostic Logging is turned on. This may temporarily reduce performan
ce.
check the below profile option and change it to No if it is yes..
FND: Debug Log Enabled =No
FND: Debug Log Level = Error
FND: Diagnostics = No
Also use below script to see at resp/application level..
select fp.level_id, fp.level_value, fp.profile_option_value,
fu.USER_NAME
from fnd_profile_options_vl fpo
,fnd_profile_option_values fp,
fnd_user fu
where fpo.APPLICATION_ID = fp.application_id
and fpo.PROFILE_OPTION_ID = fp.profile_option_id
and fpo.profile_option_name = 'AFLOG_ENABLED'
and fu.USER_ID = fp.LAST_UPDATED_BY;
-- Bounce apache after changes are made.
********************************************************************************
******************

You might also like