Re: TSO CLIST Query

2019-02-21 Thread Seymour J Metz
du/~smetz3 From: IBM Mainframe Discussion List on behalf of Chip Grantham Sent: Tuesday, February 19, 2019 10:51 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: TSO CLIST Query Here’s an updated attempt. Enjoy. Requires SDSF /* REXX */ arg ofile ofile = Strip(ofile,"B","

Re: TSO CLIST Query

2019-02-21 Thread Seymour J Metz
ry 20, 2019 1:35 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: TSO CLIST Query The confusion might be caused by text in lower case. Clist is mainly uppercase language. ITs hak בתאריך יום ד׳, 20 בפבר׳ 2019, 0:34, מאת Seymour J Metz ‏: > What concatenation is it in? > > > -- > Shmu

Re: TSO CLIST Query

2019-02-20 Thread Paul Gilmartin
schak Mugzach >> Sent: Tuesday, February 19, 2019 11:26 AM >> To: IBM-MAIN@LISTSERV.UA.EDU >> Subject: Re: TSO CLIST Query >> >> Tso think that this is a rexx exec not a clist. What are your site defaults >> for execs and clist? >> >> ITschak >> >

Re: TSO CLIST Query

2019-02-19 Thread ITschak Mugzach
on.gmu.edu/~smetz3 > > > From: IBM Mainframe Discussion List on behalf > of ITschak Mugzach > Sent: Tuesday, February 19, 2019 11:26 AM > To: IBM-MAIN@LISTSERV.UA.EDU > Subject: Re: TSO CLIST Query > > Tso think that this is a rexx exec not a clist. What are your sit

Re: TSO CLIST Query

2019-02-19 Thread Chip Grantham
Here’s an updated attempt. Enjoy. Requires SDSF /* REXX */ arg ofile ofile = Strip(ofile,"B","'") mycmd.0=1 mycmd.1 = '$TOFFLOAD1,DSN='||ofile Say "Executin

Re: TSO CLIST Query

2019-02-19 Thread Seymour J Metz
1. I advise you to not write a clist unless you need to do something that REXX doesn't support. 2. A clist issue TSO commands nd subcommands, not operator commands. 3. Check with your security group for the permissions needed to issue a JES2 command via CONSOLE. -- Shmuel (Seymour J.) Metz

Re: TSO CLIST Query

2019-02-19 Thread Seymour J Metz
What concatenation is it in? -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List on behalf of ITschak Mugzach Sent: Tuesday, February 19, 2019 11:26 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: TSO CLIST Query

Re: TSO CLIST Query

2019-02-19 Thread Carmen Vitullo
Carmen Vitullo - Original Message - From: "David Spiegel" To: IBM-MAIN@LISTSERV.UA.EDU Sent: Tuesday, February 19, 2019 12:05:58 PM Subject: Re: TSO CLIST Query Jim et al, $TOFFLOAD is a command which only works in the JES2 Environment. It is NOT a TSO Command. Regards,

Re: TSO CLIST Query

2019-02-19 Thread David Spiegel
Jim et al, $TOFFLOAD is a command which only works in the JES2 Environment. It is NOT a TSO Command. Regards, David On 2019-02-19 12:56, Chip Grantham wrote: > Here’s an example of how I might do it. > > /* REXX */ > arg ofile > ofile = Strip(ofile,"B","'") > ocmd = '$TOFFLOAD1,DSN='||ofi

Re: TSO CLIST Query

2019-02-19 Thread Chip Grantham
Here’s an example of how I might do it. /* REXX */ arg ofile ofile = Strip(ofile,"B","'") ocmd = '$TOFFLOAD1,DSN='||ofile Address TSO ocmd Exit Chip > On Feb 19, 2019, at 11:18 AM, Lizet

Re: TSO CLIST Query

2019-02-19 Thread Lizette Koehler
I would use SYMLIST LIST CONLIST in the CONTROL Statement See what is setting the quotes in the &OFILE Typically TSO CLIST is what you see is what you get (WYSISYG) It does not typically add quotes You can also use SHOWCMD ON in 3.4 See what ISPF might be doing If ISPF is adding quotes - the

Re: TSO CLIST Query

2019-02-19 Thread ITschak Mugzach
Tso think that this is a rexx exec not a clist. What are your site defaults for execs and clist? ITschak בתאריך יום ג׳, 19 בפבר׳ 2019, 18:21, מאת FRISBIE, JIM ‏< jim.fris...@ncsecu.org>: > I'm trying to write a CLIST to make life easier on our Operations staff. > They constantly have problems