hi,
one of my table is having find method which returns table buffer object.
In one of my class, i am calling this table's find method and getting that table buffer object.
Now i am doing , while select on that table buffer object. but to my surprise, it iterates through all records which are actually there in table. It should actually iterates through only those records which are there in my table buffer returned from find method.
what am i doing wrong here? kindly guide. Thanks.
example :
mytblbuffer = mytable::find(somevalue);
while select mytblbuffer
{
it should iterate only for those records which are returned by find() method.
}
*This post is locked for comments