pagecontext.forwardimmediately in oaf
forwardimmediately method in oaf is used to call OAF page
from another OAF page. OA framework has given many other methods too to call
OAF page and each method have their own functionality.forwardimmediately is
used when we immediately wants to move from one page to another page without
executing rest of the code in the last page controller.forwardimmediately
immediately moves to target page without executing the rest of the lines
written after this method. There are other methods too like setforwardurl for calling the oaf page
which can also execute the rest of the code written after the methods but that
all depends upon the Requirment.
pageContext.forwardImmediately(“OA.jsp?page=/oracle/apps/xxap/search/webui/SearchPG”,
null,
OAWebBeanConstants.KEEP_MENU_CONTEXT,
null,
null,
true,
OAWebBeanConstants.ADD_BREAD_CRUMB_YES);
}
0 comments:
Post a Comment