|
I am leaning towards this technique (picked up off the list a few months
back) but thought there might
be a more elegant solution or one that is easy to look at visually and
verify data keyed correctly that is, as far as the arrWhs to arrDuns
relationship.
Example using only the first 3 records for brevity -
// The warehouse & dunns arrays must be in synch for this to work
// Build warehouse array
dcl-ds *n ;
*n char( 2) inz('10') ;
*n char( 2) inz('18') ;
*n char( 2) inz('20') ;
arrWhs char( 2) dim(3) pos(1) ascend ;
end-ds ;
// Build dunns array
dcl-ds *n ;
*n char( 9) inz('006477244') ;
*n char( 9) inz('612726414') ;
*n char( 9) inz('612726414') ;
arrDuns char( 9) dim(3) pos(1) ascend ;
end-ds ;
<snip>
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.