You can use below programmatic approach to solve this problem.Create a view criteria progarametically and set attribute value as bind variable. ViewObjectImpl view = this.getNsSentenceGroupVO(); ViewCriteria vc = view.createViewCriteria(); vc.setName("INCriteria"); String inClause = "IN "+groupNames; ViewCriteriaRow criteriaRow = vc.createViewCriteriaRow(); criteriaRow.setAttribute(" GroupName", inClause); vc.ad...
Advanced ADF and Webcenter Learning