|
hmmm... I don't read the manual well enough sometimes, but I believe that the MR indicator, and the file processing, is such that the next 02 is always there, and known. Otherwise there would be no way for the program to know which record to grab next. In other words, when MR is on, then 01 and 02 are also on. If there is one 01 record and 5 matching 02 records, then MR will stay on while all six records are processed. If MR is off then we know we have a widow or an orphan.
Then again I could be wrong as heck. :)
Joe Pluta wrote:
From: Booth MartinClose, except the comparison of non-key fields is only valid when both
Why not select?
select
when *INMR and FILE1DS = FILE2DS
* (do nothing)
when *INMR
write MR_Diffs
when *IN01
write NMR_01
when *IN02
write NMR_02
endsl
Isn't that about all of the choices that there are?
records are read in, which only happens when *IN02 is on.
selectYou ignore primary matching records entirely because you can't see the
when *IN01 and not *INMR
write NMR_01
when not *INMR // *IN02 is implied
write NMR_02
when *IN02 and FILE1DS <> FILE2DS // *INMR is implied
write MR_Diffs
endsl
secondary fields yet. You only process secondary records if the data fields
don't match.
Joe
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.