To get the modified rows from entity cache we have getEntityState() method at EntityImpl class. Refer to my previous blog Accessing EO impl methods from VO impl where i am overriding the getEntityState() in EOimpl and calling it in VOImpl. We can use methods written or overridden in VOImpl class to AMImpl class. There are different states associated with an entity object. STATUS_UNMODIFIED STATUS_MODIFIED STATUS_NEW STATUS_DELETED STATUS_DEAD We have to check the state or row in our AmImpl class by using the VOImpl method and through this we can distinguish the rows present at vo. Add below code in AMImpl class along with my previous post. public void geCachedRowsCount(){ JobsVOImpl jobsVo = (JobsVOImpl)this.getJobsVO(); RowSetIterator iter = jobsVo.createRowSetIterator(null); while(iter.hasNext()){ Row row = iter....
Advanced ADF and Webcenter Learning