× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



"RPG400-L" <rpg400-l-bounces@xxxxxxxxxxxx> wrote on 12/01/2017 10:07:56
AM:
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>


I would use something more like this.

dcl-ds WhsLookup_t template;
Whs char(2);
*n char(1);
Duns char(9);
end-ds;

dcl-ds *n;
*n char(12) inz('10 006477244');
*n char(12) inz('18 612726414');
*n char(12) inz('20 612726414');
WhsTbl likeds(WhsLookup_t) dim(3) pos(1);
end-ds;


Sincerely,

Dave Clark

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.