#Limit is set to the value of RRNA (subfile's relative record number) after
I finish loading the subfile (Load All).
STRDBG shows the FOR loop being run for the number of records in the
subfile; the CHAIN (in the subroutine) just doesn't get a hit, while the one
in the subprocedure does.
Jerry C. Adams
IBM i Programmer/Analyst
Managing is getting paid for home runs someone else hits. -Casey Stengel
--
A&K Wholesale
Murfreesboro, TN
615-867-5070
-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx [mailto:rpg400-l-bounces@xxxxxxxxxxxx]
On Behalf Of Alan Shore
Sent: Tuesday, February 28, 2012 1:18 PM
To: RPG programming on the IBM i / System i
Subject: RE: Can't See the Difference
How is #limit being set?
Have you used STRDBG on the program and seen the loop take place?
Alan Shore
Programmer/Analyst, Direct Response
E:AShore@xxxxxxxx
P:(631) 200-5019
C:(631) 880-8640
"If you're going through Hell, keep going" - Winston Churchill
-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx [mailto:rpg400-l-bounces@xxxxxxxxxxxx]
On Behalf Of Jerry C. Adams
Sent: Tuesday, February 28, 2012 2:14 PM
To: RPG400-L
Subject: Can't See the Difference
I am thoroughly bamboozled by this one.
I have code in two places in my program that loop through a subfile. The
code is essentially the same. The first set is in a subroutine and the
second set is in a subprocedure. The subprocedure set works; the subroutine
set doesn't. It's the latter that's got me puzzled (obviously).
I have stared at this all morning and can't see any difference between the
two sets of code, but I've only got one eye and it's aged and often blurry
after staring at a terminal most of the day. Maybe someone else can point
out what is probably an obvious flaw that I can't see.
Subroutine code (not working):
IF #limit > *Zeros;
FOR x = 1 to #limit;
CHAIN x DTU020A;
IF %found();
(some code)
Subprocedure code (working):
IF #Limit > *Zeros;
FOR x = 1 to #Limit;
CHAIN x DTU020A;
IF %found();
(different code)
In the interest of full disclosure: the definitions of the variables are:
D #Limit S Like(rrna)
D X S Like(rrna)
And rrna is the relative record number of the subfile record (DTU020A). The
debug of the subroutine code on the CHAIN 'x' has a value of '1'. After the
IF %found(), the subroutine bypasses all of the "some code" stuff. The FOR
loop runs for as many records as there are in the subfile; it's the CHAIN in
the subroutine that doesn't find the subfile record.
Jerry C. Adams
IBM i Programmer/Analyst
Joe DiMaggio is the best ball player I ever managed. Mantle is the best
one-legged ball player. -Casey Stengel
--
A&K Wholesale
Murfreesboro, TN
615-867-5070
--
This is the RPG programming on the IBM i / System i (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 / System i (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.