Hi!!
I am using jdeveloper 11.1.1.5
I had used this code in my AMImpl Method
for (row = glacclrs.first();row!=null;row=glacclrs.next()){
for (Object o:schclasslist){ //I am getting error as for each applicable to expression type
if(o.toString().equals(row.getAttribute("GaclPrimId") ==null ? "" : row.getAttribute("GaclPrimId"))){
classlist.add(row.getAttribute("GaclId"));
break;
}
I am struggling with this error :(
Could anyone pls help me