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



On 2017-06-27 1:59 PM, Charles Wilt wrote:
...
but in the calculations, the code has...
lvData.lvFees(lvCnt) <snip>

Compiling on a v7r2 box, with TGTRLS(*CURRENT), the compile fails
with RNF7591: An operand of a qualified name expression is not valid.
...
We added the QUALIFIED keyword to the DS, and the compile succeeds. But
the program doesn't work correctly.


Check the cross reference to see if the names $FEE01, $FEE02, $AMTTYP01 etc exist as standalone fields in the program. If so, check whether there is any code that is working with the unqualified fields, or if there are compiler-generated I specs that load those fields from a file. If so, then any code that uses those standalone fields used to work with the subfields of the data structure, and now they're just working with the standalone fields.

If that's what's happening, then instead of adding the QUALIFIED keyword, you should change lvData.lvFees(lvCnt) to just lvFees(lvCnt).

Or, if you want to keep the data structure qualified, then if $FEE01 etc are coming from a file, you could add keyword PREFIX('LVDATA.') to your file, and then the fields would become subfields of the qualified data structure.


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.