Hi All,
Jdev version:12.1.3
I have a query: I want to display/print one particular column value from application module. to do this please find the below method to display department_Name values from Department table.
public void getDeptVO(){
ViewObjectImpl deptVo = this.getDepartmentsVO1();
deptVo.setRangeSize(-1);
Row[] deptRow = deptVo.getAllRowsInRange();
for(int i=0;i<deptRow.length;i++){
DepartmentsVORowImpl deptVR = (DepartmentsVORowImpl)deptRow[i];
System.out.println("elements are:"+deptVR.getAttribute("DepartmentName"));
}
}
It is working fine. But this method fetches all the columns in the table to display one column values.
Could any help me on how to fetch only one column values to display/ print them.
Thanks in Advance,
Surya.