We can open Oracle Form / D2K form from OAF page
- Below details are required to open oracle form from OAF page
- Form Function Name
- Form Responsibility
- Form Schema
- Form Security group
- Call the forwardImmediatelyToForm method to open Oracle form
public void processFormRequest(OAPageContext pageContext, OAWebBean webBean) {
super.processFormRequest(pageContext, webBean);
if (pageContext.getParameter("ButtonSO") != null) {
String formName = "form:ONT:ORDER_MGMT_SUPER_USER:STANDARD:ONT_OEXOEORD_SUMMARY";
pageContext.forwardImmediatelyToForm(formName);
}
}
No comments:
Post a Comment