Technology Stack - EBS (MOSC)

MOSC Banner

Is there any change for controler oracle.apps.fnd.sso.login.webui.MainLoginPageCO between R12.2.5 an

edited Jan 18, 2017 1:44AM in Technology Stack - EBS (MOSC) 4 commentsAnswered ✓

Hi All,

I met a issue when do some customization on controller 'oracle.apps.fnd.sso.login.webui.MainLoginPageCO' on R12.2.5.

When I do below change for oracle.apps.fnd.sso.login.webui.MainLoginPageCO on R12.2.4, it works, but does NOT work on R12.2.5.

public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
{
      String pUserName =  pageContext.getParameter("usernameField");
      String pPassword =  pageContext.getParameter("passwordField");
      String pass = checkLDAP(pageContext, pUserName, pPassword);     
      if  ("N".equals(pass)) {         
          throw new OAException("Incorrect login and password.");
      }        
      String pwd = get_pwd(pageContext, pUserName);
      pageContext.putParameter("passwordField", pwd);
      OAMessageTextInputBean pwdBean = (OAMessageTextInputBean)webBean.findIndexedChildRecursive("passwordField");
      pwdBean.setValue(pageContext, pwd);
      super.processFormRequest(pageContext, webBean);

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center