Overview: The steps for building a basic search page in OA Framwork are provided here. For that exercise I used OAF version 12.2.7. There are multiple ways in which to
Step1: Create AM and VO in Server and Create page and Controller in webui

Step2: Create Page Region and Items as per the requirement

Step3: Set the PageLayoutRN property inspector as shown below

Step4: Create new method in AMImpl to execute VO query
public void initOPeratingUnitVO(String OrgNamestr) { OperatingUnitVOImpl vo = getOperatingUnitVO1(); vo.clearCache(); vo.setWhereClause(null); vo.setWhereClauseParam(0,OrgNamestr); vo.executeQuery(); }
Step5: Call the AM method into Page Controller CO to execute VO
if(pageContext.getParameter("Go")!=null) { String OrgNamestr = pageContext.getParameter("OrgName"); testAMImpl am = (testAMImpl) pageContext.getApplicationModule(webBean); am.initOPeratingUnitVO(OrgNamestr); }
Look and feel of the page after running
