Its not just the precompiler. If you avoid using the structure in an SQL
statement, the base compiler will still complain with an RNF7031. I now
accept the limitation, because I don't relish trying to state a business
case in an RFE for this function. I was only hoping that maybe I was doing
it wrong.
From: rob@xxxxxxxxx
To: "RPG programming on the IBM i \(AS/400 and iSeries\)"
<rpg400-l@xxxxxxxxxxxx>
Date: 09/26/2014 03:36 PM
Subject: RE: Add flattened subfields after likeds
Sent by: "RPG400-L" <rpg400-l-bounces@xxxxxxxxxxxx>
likeds is implicitly qualified. You are not allowed to add qualified
along with likeds.
d xds ds likeds(aaakeyds) qualified
RNF3372E The keyword is not allowed following keyword LIKEDS; keyword is
ignored.
perhaps the precompiler just doesn't understand 'implicit'
Rob Berendt
--
IBM Certified System Administrator - IBM i 6.1
Group Dekko
Dept 1600
Mail to: 2505 Dekko Drive
Garrett, IN 46738
Ship to: Dock 108
6928N 400E
Kendallville, IN 46755
http://www.dekko.com
From: Scott Mildenberger <SMildenberger@xxxxxxxxxxxxxxxxxx>
To: "RPG programming on the IBM i (AS/400 and iSeries)"
<rpg400-l@xxxxxxxxxxxx>
Date: 09/26/2014 03:31 PM
Subject: RE: Add flattened subfields after likeds
Sent by: "RPG400-L" <rpg400-l-bounces@xxxxxxxxxxxx>
Try adding 'qualified' to the xds definition and see if that fixes it.
Scott
-----Original Message-----
From: RPG400-L [mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of
rob@xxxxxxxxx
Sent: Friday, September 26, 2014 1:28 PM
To: RPG programming on the IBM i (AS/400 and iSeries)
Subject: Re: Add flattened subfields after likeds
It just seems to have a problem with that extra field.
D aaakeyds e ds extname(aaakey) qualified
d xds ds likeds(aaakeyds)
d mysubfield 3p 0
/free
exec sql
select comp into :xds.mysubfield
from aaakey
where comp=1;
xds.mysubfield+=1;
exec sql
update aaakey
set comp=:xds.mysubfield
where comp=:xds.mysubfield-1;
*inlr=*on;
return;
/end-free
From listing:
select comp into :xds.mysubfield
SQL0312: Position 32 Variable MYSUBFIELD not defined or not usable.
SQL0312: Position 28 Variable XDS not defined or not usable.
--
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.
--
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.
As an Amazon Associate we earn from qualifying purchases.