Hello.
I need to simulate while loop for a table, and doing only the fetching.
i.e :
void myMoveNext() {
// code for moving next of myTable.
}
instead of :
while select salesline {
// the desirable code.
}
How can I do that (without using datasource)?
Thanks :)