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



That's a viable option. It would allow direct references to A.key & A.value, which I'm not sure I like.

Thank you



-----Original Message-----
From: Darren Strong [mailto:darren@xxxxxxxxx]
Sent: Friday, September 13, 2019 1:36 PM
To: RPG programming on IBM i <rpg400-l@xxxxxxxxxxxxxxxxxx>
Subject: RE: Nested DS & LIKE()

You cannot specify multiple levels in the like, according to the help on the error you received. Notice "it cannot contain more than one period"
RNF0623
Cause . . . . . : A simple qualified name is formed by specifying the owning data structure name followed by a period (.) followed by the subfield name. It cannot contain more than one period, and it cannot start or end with a period. The subfield-name part must be one of the subfields in the data structure.



I don't think of using templates is a plan B. They are very nice. However, if you want to avoid them and if you are willing to name at least one of your subfields, you could use this syntax.

Dcl-ds A qualified ;
key int(10) inz(1) ;
value varChar(128) inz('AA') ;
*n like(a.key) inz(2) ;
*n like(a.value) inz('BB') ;
*n like(a.key) inz(3) ;
*n like(a.value) inz('CC') ;
Dcl-ds xyz dim(3) pos(1) ;
key like(A.Key);
value like(a.value);
End-ds ;
End-ds;

-----Original Message-----
Templates were my Plan B. I was just checking if there's a way to avoid them.


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.