Get the profile option value in extended controller
Hi Team,
I am creating extension of controller and there is a profile option created at site level. I am trying to access in extension of controller in pfr method. But i am getting null value.
Can you pls guide what to do to get the value in extended controller.
Below is the snippet code i am using:-
public class OrderCO extends oracle.apps.po.document.order.webui.OrderCO
{
public void processRequest(OAPageContext paramOAPageContext, OAWebBean paramOAWebBean)
{
super.processRequest(paramOAPageContext, paramOAWebBean);
}
public void processFormRequest(OAPageContext paramOAPageContext, OAWebBean paramOAWebBean)
{
DocumentAMImpl localDocumentAMImpl = (DocumentAMImpl)paramOAPageContext.getApplicationModule(paramOAWebBean);
//OAViewObject localOAViewObject1 = (OAViewObject)localDocumentAMImpl.findViewObject("PoHeaderMergeVO");
OAApplicationModule am = (OAApplicationModule)paramOAPageContext.getApplicationModule(paramOAWebBean);