Login fails “You are trying to access a page that is no longer active.” The issue can be reproduced at will with the following steps:
Issue : After cloning process the login page of Oracle E-Business Suite R12 show the above error.
Solution : For this you need to update the new hostname in the icx_parameteres table
1. SQL> SELECT SESSION_COOKIE_DOMAIN FROM icx_parameters;
SESSION_COOKIE_DOMAIN
---------------------
erp.local.com (This is hostname of Source Application Tier)
2. SQL>update icx_parameters set SESSION_COOKIE_DOMAIN = ‘target.local.com’;
1 row updated.
SQL> commit;
Commit complete.
(This has changed the SESSION_COOKIE_DOMAIN of target application to target hostname.domain_name)
3. SQL> SELECT SESSION_COOKIE_DOMAIN FROM icx_parameters;
SESSION_COOKIE_DOMAIN
---------------------
target.local.com
Comments
Post a Comment