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"),
1);
}
======================================
Below process is Correct
-----------------------------
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"),
1);
super.processFormRequest(oapagecontext, oawebbean);
}
Comments
Post a Comment