Monday, October 11, 2010

Customize Oracle LOGO

Many a times client wants his company logo to be visible on login pages, along with it other
details such as non-prod instance name, clone date, next refresh date can be presented to user on all jsp pages.

Steps followed for achieving same:

Modification made for accommodating LOGO on Login page:
Edit the AppsLocalLogin.jsp file:
from :
ImageBean imgBean1 = new ImageBean("/OA_MEDIA/FNDSSCORP.gif", FND_ORACLE_LOGO);
to :
ImageBean imgBean1 = new ImageBean("/OA_MEDIA/", FND_ORACLE_LOGO);

Clear caches and bounce Apache to see the change
Note:This is not supported solution by oracle( pls review metalink note: 468971.1)

Modification made for accommodating instance cloned dates on all the html/self service pages:
a. Login with System Administrator responsibility
b. Navigate: Application ---> Function
c. Query the function 'FWK_HOMEPAGE_BRAND'
d. Replace the value of the 'User Function Name' with the desired text
e. Logout and login to see the change (you shouldn't need to clear caches and bounce apache)

Note: 'User Function Name' will not take more than more than 64 characters. So we need to accommodate our text within 64 characters.

No comments:

Post a Comment