Check the GUEST user information:
================================
a. Run following SQL:
select user_name, start_date, end_date
from fnd_user
where user_name = 'GUEST';
This should return one row, end_date should be NULL or in advance of today's date, and start_date should be before today's date.
b. Validate the GUEST username/password combinations from the DBC file.
Using the GUEST_USER_PWD value in the DBC file (see step 2) run the following sql:
select fnd_web_sec.validate_login('GUEST','
This should return Yes If this returns N, then do:
select fnd_message.get from dual;
This should give a reason why the validation failed, or an error message. If this fails with a database error, confirm the problem is not specific to the GUEST user.
Redo the SQL command with a different userid (like sysadmin)
select fnd_web_sec.validate_login('SYSADMIN','
Again, this command should return 'Y' if it is working OK. If not, you should reload the jar files to the database using adadmin.
18. Run the following script to ensure there are no invalid objects:
select owner, object_name, object_type
from all_objects
where status != 'VALID'
order by owner, object_type, object_name;
No comments:
Post a Comment