|
On Jun 16, 2017, at 11:27 AM, Darren Strong <darren@xxxxxxxxx> wrote:
I'm trying out the new i7.3 TR2 stuff. I have a data structure like the
following that I'm trying to convert to nested, but I'm not allowed to use
the overlay in a datastructure definition. I've pasted the error message
in the "Desired State" section below. Is there a way around this? This
example only shows one nested element, but my production program has
several. They were removed to simplify the example.
Current state:
dcl-ds CD_t qualified template;
Col like(CurCol_t);
Wid like(ColWid_t);
Hdg1 like(ColHdr_t);
Hdg2 like(ColHdr_t);
end-ds;
dcl-ds FullName1CD_t qualified template;
Col like(CurCol_t) INZ;
Wid like(ColWid_t) inz(46);
Hdg1 like(ColHdr_t) inz('');
Hdg2 like(ColHdr_t) inz('Employee');
end-ds;
dcl-ds T1 qualified;
TtlSiz;
FullName likeds(FullName1CD_t) inz(*likeds) overlay(TtlSiz);
arr likeds(CD_t) dim(T1Cnt) pos(1);
end-ds;
dcl-c T1Cnt %div(%size(T1.TtlSiz):%size(CD_t));
Desired State that gives the error:
dcl-ds CD_t qualified template;
Col like(CurCol_t);
Wid like(ColWid_t);
Hdg1 like(ColHdr_t);
Hdg2 like(ColHdr_t);
end-ds;
dcl-ds T1 qualified;
TtlSiz;
dcl-ds FullName qualified overlay(TtlSiz);
RNF0202: KEYWORD NOT ALLOWED FOR A NESTED DATA STRUCTURE SUBFIELD
Col like(CurCol_t) INZ;
Wid like(ColWid_t) inz(46);
Hdg1 like(ColHdr_t) inz('');
Hdg2 like(ColHdr_t) inz('Employee');
end-ds;
arr likeds(CD_t) dim(T1Cnt) pos(1);
end-ds;
dcl-c T1Cnt %div(%size(T1.TtlSiz):%size(CD_t));
--
This is the RPG programming on the IBM i (AS/400 and iSeries) (RPG400-L) mailing list
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/rpg400-l.
Please contact support@xxxxxxxxxxxx for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our affiliate link: http://amzn.to/2dEadiD
As an Amazon Associate we earn from qualifying purchases.
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.