Thursday, December 19, 2013

Http 500 : Internal Server Error When Login To A New Cloned Environment in R12:

Solution A:

1. Ensure that you have taken a backup of your environment,

2. run the following script on the cloned environment to synchronize the Workflow tables with APPS user

sqlplus apps/<apps password>

set serveroutput on size 100000;
declare
begin
WF_LOCAL_SYNCH.BULKSYNCHRONIZATION(
P_ORIG_SYSTEM => 'ALL',
P_PARALLEL_PROCESSES => null,
P_LOGGING => null,
P_RAISEERRORS => TRUE);
exception
when others then
dbms_output.put_line('sqlerrm = ' || sqlerrm);
end;
/
3. Retest the login issue.

4. Migrate the solution as appropriate to other environments.

Solution B:

1. Clear the browser cache and E-Business suite instance cache.

2. Compile all JSP files after sourcing the environment. Run the command

     cd $FND_TOP/patch/115/bin
     ojspCompile.pl --compile –flush

+++++++++++++++++++++++++++
ID 1314433.1, 813523.1 & 781413.1
Note: Unable To Open The E-Business Suite Login HTTP-404 Error. Error_log Shows "File does not exist: $INST_TOP/portal/OA_HTML/AppsLogin" (Doc ID 1177264.1)
+++++++++++++++++++++++++++

1 comment:

  1. Thanks, your solution fixed my problem. You are awesome be bless in Jesus name

    ReplyDelete