ShowAllRows method: Rowset class
Syntax
ShowAllRows()
Description
ShowAllRows "unhides" all rows of the rowset object executing the method. Using this method is equivalent to a loop setting the visible property of each row of the rowset to True.
ShowAllRows cannot be executed from the same rowset you want to display, or from a child rowset against a parent. Place your PeopleCode in a parent rowset and execute it against a child rowset.
Parameters
None
Returns
None.
Example
&ROWSET.ShowAllRows();
Related Topics