|
Adam West wrote:
Is there a way to refer to a field, by its name, in RPG ILE? I
have a legacy file that contains rates by month. For each month,
there is a field, RATE01, RATE02, etc.
I would like to be able to check the name of the field and then know that I need to find say RATE07 since we are in July.
FWiW, an SQL VIEW can provide the logic to select the appropriate rate field for the current month. For example, the field /rate_today/ will replace the twelve RATE## fields from the file, with just the one desired rate field which will have the rate for the current month:
create view currentrate
( aa ,bb ,... ,rate_today ,... ,yy ,zz )
as
( select aa ,bb ,...
,case month(current date)
when 01 then rate01
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 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.