Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Row currentRow = ADFUtils.findIterator(MAIN_TABLE_ITERATOR).getCurrentRow();
- ViewObjectImpl vo = (ViewObjectImpl)getMainViewObject();
- RowSetIterator rsi = vo.createRowSetIterator(null);
- int i = 0;
- while (rsi.hasNext()) {
- Row r = rsi.next();
- r.setAttribute("OrderNum", i);
- i++;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement