Advertisement
psi_mmobile

Untitled

Dec 17th, 2018
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1.         Row currentRow = ADFUtils.findIterator(MAIN_TABLE_ITERATOR).getCurrentRow();
  2.         ViewObjectImpl vo = (ViewObjectImpl)getMainViewObject();
  3.         RowSetIterator rsi = vo.createRowSetIterator(null);
  4.         int i = 0;
  5.         while (rsi.hasNext()) {
  6.             Row r = rsi.next();
  7.             r.setAttribute("OrderNum", i);
  8.             i++;
  9.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement