Custom Search Criteria ADF Page through List Binding
This article will emphasize List Bindings and how using List Bindings we can set the search criteria in ADF Application. To Implement the List Binding criteria page, First Application needs to be created and after that create Business Components like View Objects, Application module The sample application which created for the demonstration of Listbinding contains two view objects 1. Business Unit View object which will display a list of values 2. Employee Info View Object is created with View criteria and binding parameter to display the data based on the LOV selection Queries used for view objects are SELECT * FROM XXC.XX_BUSINESS_UNITS SELECT * FROM XXC.XX_EMPLOYEE_INFO Once View criteria are created, then add below code in AMIMPL java code public void SearchCriteria(int BuId) { ViewObjectImpl vo= this.getXxEmployeeInfoVie...