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



DEFINITELY agree - RPG would be a MUCH better choice

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: midrange-l-bounces@xxxxxxxxxxxx [mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of Bob P. Roche
Sent: Friday, January 04, 2013 9:38 AM
To: Midrange Systems Technical Discussion
Subject: Re: Managing multiple &FIELDS in a screen using CL

Why run the screen using CL? RPG would be a better choice and make it very east to do what you want.




From:
"Vidal, Peter" <Peter.Vidal@xxxxxxxxxxxxxxx>
To:
"Midrange Topics (midrange-l@xxxxxxxxxxxx)" <midrange-l@xxxxxxxxxxxx>,
Date:
01/04/2013 08:33 AM
Subject:
Managing multiple &FIELDS in a screen using CL
Sent by:
midrange-l-bounces@xxxxxxxxxxxx



GM list!

I have seen this issue explained before but I do not know how to describe
it better than giving you an example about it.

I have 60 fields on a single screen. All of the fields start with the
prefix "MEMBER" and they have a numeric suffix between 01 and 60. I want
to use a DOFOR to check all of them and turn on a flag whenever I find one
of these fields with some content in it. I would like to do something
like this:

DCL VAR(&COUNTER) TYPE(*INT) LEN(2)
DCL VAR(&CNTR) TYPE(*CHAR) LEN(2)
DCL VAR(&MEMBER) TYPE(*CHAR) STG(*AUTO) LEN(10)
DCL VAR(&MEMBER_FLG) TYPE(*LGL) STG(*AUTO) LEN(1)
.
.
.

CHGVAR VAR(&MEMBER_FLG) VALUE('0')
DOFOR VAR(&COUNTER) FROM(1) TO(60) BY(1)
CHGVAR VAR(&CNTR) VALUE(&COUNTER)
CHGVAR VAR(&MEMBER) VALUE('MEMBER' || &CNTR)
IF COND(&MEMBER *NE ' ') THEN(DO)
CHGVAR VAR(&MEMBER_FLG) VALUE('1')
ENDDO
ENDDO

Obviously this will not work, but is the idea of what I am trying to
accomplish. Same thing if I have 60 indicators (from 01 to 60) on this
display and I would like to turn them all off without doing:
CHGVAR VAR(&IN01) VALUE('0')
CHGVAR VAR(&IN02) VALUE('0')
CHGVAR VAR(&IN03) VALUE('0')
Etc., etc., etc. ...

Thank you for your advices in advance!
Peter Vidal

________________________________
This communication is intended only for the use of the individual or
entity named as the addressee. It may contain information which is
privileged and/or confidential under applicable law. If you are not the
intended recipient or such recipient's employee or agent, you are hereby
notified that any dissemination, copy or disclosure of this communication
is strictly prohibited. If you have received this communication in error,
please immediately notify CareCentrix Compliance Hot Line at (877)
848-8229 and notify the sender by electronic mail. Please expunge this
communication without making any copies. Thank you for your cooperation.

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.