
POSTED: Jun 6, 2010 7:16 AM (GMT)
…what changes need to be done in the existing program to accomadate the subfile…
The direct answer is not to use a load-all subfile. A load-all subfile should not be used for displaying more than a couple hundred records. They allow up to 9999 records, but that is far too many to be useful.
You should use a page-at-a-time subfile when the possible records grow to more than around a couple hundred. Page-at-a-time is a subfile defined with subfile size equal to subfile page.
To understand subfiles, review the Application Display Programming manual. Chapter 4., Displaying Groups of Records Using Subfiles, has explanations, descriptions and example programs.
Tom
















