×
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.
You are updating the record, when you do that you lose the READC
indicator, unless you turn it back on.
From:
Florin Todor - YYZ Concord <ftodor@xxxxxxxxxxxxxxxx>
To:
<rpg400-l@xxxxxxxxxxxx>
Date:
09/30/2010 02:25 PM
Subject:
Chain and Readc
Sent by:
<rpg400-l-bounces@xxxxxxxxxxxx>
Hello,
I have an issue, which, in my opinion shouldn't be an issue at all
because it is pretty straight forward...
Anyway, I have a subfile where I need to check (for ALL records) if a
specific field has a certain value. I do this using CHAIN RRN op-code.
I, also, want to make EVERY record available for the next READC
operation; pretty simple, right? The only problem is it doesn't work!
The READC does not see any "changed" record...
Here is the relevant code:
C sr_chkhaz begsr
/Free
s1rrn = 1;
Dow s1rrn <= 30 and
v_hazfrt = 'N';
Chain s1rrn R010D02;
If %found();
If #DHAZ = 'X' or
#DHAZ = 'H';
v_hazfrt = 'Y';
Endif;
*in37 = *on;
Update R010D02;
*in37 = *off;
Endif;
s1rrn += 1;
Enddo;
s1rrn = 1;
Write R010D03;
/End-free
C endsr
*in37 turns on/off SFLNXTCHG for R010D02 Subfile record:
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.