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



As I said, READC is an opcode designed to spoil your day. Solve the real problem; read all the subfile records.

Mike Berman wrote:
Glenn, I made this change 71 is on the SFLNXTCHG
C readc sfl1 c eval *in71 = *on c update sf1ctl but it blows up:
Message ID . . . . . . : CPF5055 Severity . . . . . . . : 30 Message type . . . . . : Sender copy Date sent . . . . . . : 06/22/07 Time sent . . . . . . : 11:30:34
Message . . . . : Input/Output option list is not valid. Cause . . . . . : Option list passed on Input/Output operation is not correct for the file MYFILE in library MYLIB. Option  passed on Input/Output operation to device DS7S1 not correct. Operation must be PUT,
GET, PUTGET, or UPDATE.
Glenn Gundermann <ggundermann@xxxxxx> wrote:
Hi Mike,

Add the record level keyword SFLNXTCHG to the SFL record format,
conditioned by an indicator. After you do a READC, turn on the indicator
and update the SFL record. This record will then be considered changed
for the next time you do a READC.

Hope this helps.

Glenn Gundermann
ggundermann@xxxxxx
(647) 272-3295

A little problem is also with the READC. Let's say there is an error on
one field. They hit enter and the error routine redisplays the format. In
my case, if they hit enter again without changing anything, the screen
stays where it is, meaning that, the READC does not get a hit. I would
prefer that in such a case, admittedly not that frequent,
the error message should pop up again.

Michael_Schutte@xxxxxxxxxxxx wrote:
No... %EoF() doesn't return a numeric value to use in your FOR clause...
The "TO" portion needs to a number or a field with a number in it.
Also... you can only put the name of the display file in the %EoF()
function....

What you need to do....

C READC SFL1
C DoW not %EoF(DISPLAYFILE)
C ... process
C READC SFL1
C ENDDO

OR

For RRN1 = 1 To RRNMAX;
Chain RRN1 SFL1
If not %Found(DISPLAYFILE);
Leave;
endif;
... process
Endfor;


Michael Schutte
Admin Professional
Bob Evans Farms, Inc.
What's the secret? Find out at your Bob Evans Restaurant on May 17!


rpg400-l-bounces@xxxxxxxxxxxx wrote on 06/22/2007 08:45:13 AM:

Booth, just one thing on this code the statement is garnering a '20'
message in the compile but not getting a clean compile the format is
the subfile is this allowed for a subfile?

C for RRN1 = 1 to %eof(sfl1)

002200 Parameter SFL1 is not valid for built-in function %
%EOF is ignored.

Booth Martin wrote:
Nope. before, or after (depending on where you want the blank lines),
clear the sfl record and add a FOR loop that will write however many
blank lines that you want.

Mike Berman wrote:
HI Thank you for greta help earlier. I apologize for the
simplicity of the issue earlier. Perhaps this one is better.
My issue now is, I did create the data entry program. But to me,
it would be slicker, if I just add empty lines in my regular
maintenace subfile, which does Change and Delete very nicely. I
currently hang a F6 ket to ADD records. Now I will then call my new
add program or copy the code in.
But why not be able to add blank lines to the existing maintenance
program and let them add?
Are there are special keywords I would need or codes for this?

Thanks, Mike


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.