|
May I ask a simple question that isn't clear to me. The for loop is defined to run for the size of the subfile. So, why is there a not %found loop? By definition, this can never occur, right? And if it does, so what? Also, a sort of sideways question: Does the overflow indicator get set off when the heading is printed? Must we code it? --------------------------------- Booth Martin http://www.martinvt.com --------------------------------- -------Original Message------- From: RPG programming on the AS400 / iSeries Date: 10/03/05 12:31:20 To: RPG programming on the AS400 / iSeries Subject: Re: Printing from a Subfile Hello, You can't use the record format name as the parameter to %EOF(), and in any case, the CHAIN opcode doesn't turn on %EOF, it turns on %FOUND if a record is not found. I suggest coding it more like this: write heading; prtoverflow = *off; for RRN = 1 to HighRRN; chain RRN KDSDATA; if not %found; iter; endif; if prtoverflow; write footer; write heading; prtoverflow = *off; endif; write detail; endfor; write footer; The "HighRRN" field is something that you save when you load the subfile to keep track of the highest RRN that you loaded. That way, you can easily loop through the subfile. -- This is the RPG programming on the AS400 / iSeries (RPG400-L) mailing list To post a message email: RPG400-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options, visit: http://lists.midrange.com/mailman/listinfo/rpg400-l or email: RPG400-L-request@xxxxxxxxxxxx Before posting, please take a moment to review the archives at http://archive.midrange.com/rpg400-l. .
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.