> -----Original Message-----
> From: IBM Mainframe Discussion List
> [mailto:[EMAIL PROTECTED] On Behalf Of Mark Steely
> Sent: Friday, May 05, 2006 11:02 AM
> To: [email protected]
> Subject: Re: CA-7 & CA-OPS/MVS
>
>
> Thanks that worked. One more thing can that command be
> continue. I have
> about 6 commands to execute.
>
> Thank You
Huh?
If the single OPSCA7 line won't find on a single 72 character line, then
you could just do normal REXX continuation like:
OPSCA7("/LOGON CA7ONL;" || ,
"/WLB,SET=CLASSB,BARR=0;" || ,
"another command;" ||,
"yet another;" || ,
"/LOGOFF")
Or:
cmd = "/LOGON CA7ONL;"
cmd = cmd || "/WLB,SET=CLASSB,BARR=0;"
cmd = cmd || "another command;"
cmd = cmd || "yet another;"
cmd = cmd || "/LOGOFF"
OPSCA7(cmd)
--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology
This message (including any attachments) contains confidential
information intended for a specific individual and purpose, and its
content is protected by law. If you are not the intended recipient, you
should delete this message and are hereby notified that any disclosure,
copying, or distribution of this transmission, or taking any action
based on it, is strictly prohibited.
----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html