Posts

Showing posts from September, 2019

Controller OAF super.processFormRequest and super.processRequest Oracle apps R12

Controller OAF super.processFormRequest and super.processRequest Oracle apps R12 If the super.process mentioned at the starting of the function then, it may not work. So in that case mention the super.process at end of the function. Below process is Wrong ----------------------------- public void processFormRequest(OAPageContext oapagecontext, OAWebBean oawebbean) { super.processRequest(oapagecontext, oawebbean);     OAApplicationModule oaapplicationmodule = oapagecontext.getApplicationModule(oawebbean);         if (oapagecontext.isLoggingEnabled(1))                 oapagecontext.writeDiagnostics(this,                                                "funcid is" + oapagecontext.getParameter("OAFunc"),                         ...

OAF Validate Attachment Validation EIT Controller Extension for Specific Request Oracle apps R12

OAF Validate Attachment EIT Controller Extension for Specific EIT Request Oracle apps R12 Make sure to Give super.processFormRequest(oapagecontext, oawebbean); at the end the processformrequest package xxrco.oracle.apps.per.selfservice.review.webui; import oracle.apps.fnd.framework.OAException; import oracle.apps.fnd.framework.OAFwkConstants; import oracle.apps.fnd.framework.webui.OAPageContext; import oracle.apps.fnd.framework.webui.beans.OAWebBean; import oracle.apps.per.selfservice.review.webui.ReviewCO; import oracle.apps.fnd.framework.OAApplicationModule; import oracle.apps.fnd.framework.webui.beans.message.OAMessageAttachmentLinkBean; import oracle.apps.fnd.framework.server.OAViewDef; import oracle.apps.fnd.framework.OAViewObject; import oracle.cabo.ui.UIConstants; import oracle.apps.per.selfservice.review.common.ReviewParams; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Types; import oracle.ap...