× 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.



Rick.Chevalier@xxxxxxxxxxxxxxx wrote:
I'm trying to add a prerun-time array to a program for the first time in
many years. After looking up the the nuances for a prerun-time array I
added the appropriate F and D specs. That's where the trouble began. I
need to add an alternating array which it sounds like I can do from the
documentation on coding a prerun-time array shown below from the RPG
Reference manual. However, the ALT keyword doesn't play nice with the
other keywords I need, specifically FROMFILE. The ALT keyword
documentation specifically says it cannot be used with FROMFILE.

You use FROMFILE to list the first array and you use the ALT keyword to list the second array. Say your file has lines like this:
Sally London
Jack Amsterdam
Anne Boston

Then you would code
D aName S like(NAME) DIM(1200)
D FROMFILE(myfile)
D aCity S like(CITY) DIM(1200) ALT(aName)

But I prefer Booth's method. You would code FROMFILE on the aArray array. Besides being easier to understand (for me, at least), this method allows you to have data for more than two arrays.

D ds
D aArray dim(1200) FROMFILE(myfile)
D aName like( NAME ) overlay(aArray)
D aCity like( CITY )
D overlay( aArray: *next)
D aAge like( AGE )
D overlay( aArray: *next)
D aPhone like( PHONE )
D overlay( aArray: *next)

Then you can use lookup on either the aName, aCity, aAge or aPhone arrays.

i = %lookup('Jack' : aName);
msg = 'Jack lives in ' + aCity(i);


As an Amazon Associate we earn from qualifying purchases.

This thread ...

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.