As
per Oracle, Personalizations on Local Login Page No longer applies for 12.2.5,
it is applicable till 12.2.4 only and please find the suggestion made by Oracle
for one of the customer.
Starting
on 12.2.5 the login page is no longer a FWK page. Some customer have asked how
to retain the old FWK login page and its customizations.
Below is the alternative provided in Oracle eBusiness
security Guide Documentation –
1) In case you want to retain the old page, make a copy of the old AppsLocalLogin.jsp (version 120.12); for example to OldAppsLogin.jsp and compile it.
1) In case you want to retain the old page, make a copy of the old AppsLocalLogin.jsp (version 120.12); for example to OldAppsLogin.jsp and compile it.
$FND_TOP/patch/115/bin/ojspCompile.pl
--compile -s <specific_jsp>.jsp --flush
2)
Then
set the profile
APPS_LOCAL_LOGIN_URL
= http://server:port/OA_HTML/OldAppsLogin.jsp
NOTE:
- Do not to modify AppsLocalLogin.jsp,
login.js nor login.css
- Use of customer owned page by changing the
profile APPS_LOCAL_LOGIN_URL
- Add custom JavaScript on custom-login.js
- Change page CSS on custom-login.css
- On the custom CSS use the selectors to
hide/show page elements
- or use the profiles to customize bottom
links
3)
use
FND_LOGIN_HIDE [Local Login Hide Items] profile to remove specific HTML by id
or message name.
In Oracle E-Business Suite Release 12.2.5,
you can use the profile FND_LOGIN_HIDE to enter a comma-separated list of
elements to suppress or hide from the login page.
Elements can be named by their DOM object ID
or by the message the element displays.
The ID must be preceded by the '#' or pound
sign.
For example:
FND_LOGIN_HIDE=#ForgotPasswordURL
This suppresses the display of the
"Login Assistance" link text at the bottom of the page.
In case of multiple values, each value
should be comma separated, prefixed with #.
Example: #RegisterHereURL,
#AccessibilityBox, #LanguagePickerBox, #FND_COPYRIGHT
NOTE:
If FND_LOGIN_HIDE profile options is not available: According to the internal code search, this profile comes with fndssoprof12.ldt / LoginHelper.java.
To resolve this issue, run FNDLOAD to upload this ldt file.
Example:
$FND_TOP/bin/FNDLOAD APPS/<your_appspswd> 0 Y UPLOAD @FND:patch/115/import/afscprof.lct @FND:patch/115/import/US/fndssoprof12.ldt
$FND_TOP/bin/FNDLOAD APPS/<your_appspswd> 0 Y UPLOAD @FND:patch/115/import/afscprof.lct @FND:patch/115/import/US/fndssoprof12.ldt
Also,the
below is Work around followed by one of the customer for Corporate Branding
1)
Make a backup of $OA_HTML/oracle_white_logo.png
cp oracle_white_logo.png oracle_white_logo_bkup.png
2)
Copy custom logo TEST_LOGO.gif to $OA_MEDIA
3)
overwrite the oracle_white_logo.png with the custom logo.
$ cd $OA_MEDIA
$ cp TEST_LOGO.gif oracle_white_logo.png
Reference Metalink ID: Personalizations Are Not Working for the Login Page In R12.2.5 (Doc ID 2127759.1)
Comments
Post a Comment