Technology Stack - EBS (MOSC)

MOSC Banner

Extended Controller Class is not Working

edited Aug 20, 2021 10:51AM in Technology Stack - EBS (MOSC) 2 commentsAnswered
 Hello All,I have extended controller class but unable to find the impact of this extended class on OAF Form.

Code Is 
--------
package xx.oracle.apps.per.selfservice.personalinformation.webui;

import oracle.apps.fnd.framework.OAException;
import oracle.apps.fnd.framework.webui.OAPageContext;
import oracle.apps.fnd.framework.webui.beans.OAWebBean;
import oracle.apps.per.selfservice.personalinformation.webui.ContactsMainCO;


public class xxContactsMainCO extends ContactsMainCO {
    public xxContactsMainCO() 
    {
    }
    
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)  
    {
        System.out.println("testing!");
        throw new OAException("Test !!!!");
      
        
        
        
    }
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)  
    {
       
        System.out.println("testing!");
        throw new OAException("test", OAException.INFORMATION);
        
        
    }
}

at form personalization, i have also changed the extended class over seeded one (at site level)
Tagged:

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