These steps are used to avoid the autoconfig phas error in R12.2
Steps:
login as applsys user
conn applsys/***********
Backup the following Tables.
create table fnd_oam_context_files_bkp as select * from fnd_oam_context_files;
create table fnd_nodes_bk as select * from fnd_nodes;
create table adop_valid_nodes_bk as select * from adop_valid_nodes;
create table ad_nodes_config_status_bk as select * from ad_nodes_config_status;
Truncate the tables.
truncate table fnd_oam_context_files;
truncate table fnd_nodes;
truncate table adop_valid_nodes;
truncate table ad_nodes_config_status;
Run the autoconfig in Run file system.
sh adautoconfig.sh
Login as System Disable the ebs_logon trigger and run the autoconfig in Patch file system
sqlplus system/********
alter trigger ebs_logon disable;
sh adautoconfig.sh
After the completion enable the trigger.
sqlplus system/********
alter trigger ebs_logon enable;
Recent Posts