Traverse through table records that are passed as parameters

Hello,

I want to iterate through table records that are passed as a parameter between class objects. I want to avoid performing a selection again.

Thank you!

will you describe little more.

In some cases, you can use the following syntax:

Table1 table1 = args.record();
while (table1)
{
//do something
next table1;
}

But be careful on which tier it runs (especially you cannot fetch data on client and call “next” on server).

Or you could use a Record*List object, pass the query object instead of a buffer and so on.