Disabling Language Selection Option In AppsLocalLogin.jsp

Introduction:

The below post discusses about disabling language selection option available in AppsLocalLogin.jsp.

Method to disable the language selection:

  1. Check the version of file AppsLocalLogin.jsp which is under $OA_HTML

This can be obtained by running the following command in the $OA_HTML directory :-

adident Header AppsLocalLogin.jsp

  1. As per Bug 3285250, this has been implemented in AppsLocalLogin.jsp version 115.50.

– If the version of AppsLocalLogin.jsp is lower than version 115.50

– Apply patch SSO Pre-Req for Application Products – Rollup F (Patch 3764779). Application of this patch delivers AppsLocalLogin.jsp version 115.74.

  1. With AppsLocalLogin.jsp version 115.50 and above :-

A new profile_option ‘Local login mask’ with name as ‘FND_SSO_LOCAL_LOGIN_MASK’ has been added that controls the different  attributes of the login page. LANGUAGE_IMAGES is one among them.

  •   Set the profile option Local Login Mask (FND_SSO_LOCAL_LOGIN_MASK).

    For the Login page to show one of more of these optional attributes, just add
    the numeric values of all desired attributes and set the value of the profile
    option to that value.
    USERNAME_HINT                   = 01
    PASSWORD_HINT                   = 02
    CANCEL_BUTTON                  = 04
    FORGOT_PASSWORD_URL   = 08
    REGISTER_URL                        = 16
    LANGUAGE_IMAGES              = 32
    SARBANES_OXLEY_TEXT     = 64

    – So, for example to show USERNAME_HINT, PASSWORD_HINT, CANCEL_BUTTON and FORGOT_PASSWORD_URL  only,  set the  profile option to 15 (01+02+04+08). To show just the LANGUAGE_IMAGES set the value  to 32, which is the default.

  • Once done clear your browser cache and Apache cache.
  • Bounce Apache and check  the AppsLocalLogin.jsp Page contents

Conclusion:

Using above method, we can disable selection option in AppsLocalLogin.jsp in Oracle EBS.

Recent Posts