Thanks.
--
Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service: 360-715-2467
rich.smrcina at vmassist.com
Catch the WAVV! http://www.wavv.org
WAVV 2007 - Green Bay, WI - May 18-22, 2007
----------------------------------------------------------------------
For TSO-REXX subscribe / signoff / archive access instructions,
send email to LIST...@VM.MARIST.EDU with the message: INFO TSO-REXX
Rich,
That will invoke it, but you do not need REXX to do that.
If I remember correctly there are two versions you can download: TASID
and TASIDP. One has panels built into the load module and one has the
panels separate.
Try the HELP while in TASID. I believe it has other suggestions for
passing parameters to it.
Bob Richards
-----Original Message-----
From: TSO REXX Discussion List [mailto:TSO-...@VM.MARIST.EDU] On Behalf
Of Rich Smrcina
Sent: Tuesday, May 01, 2007 10:06 PM
To: TSO-...@VM.MARIST.EDU
Subject: TASID
Where is it documented how to call TASID from REXX? There is an
indication of an interface, but nothing on the web site and nothing that
I can see in our TASID PDS.
Thanks.
--
Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service: 360-715-2467
rich.smrcina at vmassist.com
LEGAL DISCLAIMER
The information transmitted is intended solely for the individual or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of or taking action in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you have received this email in error please contact the sender and delete the material from any computer.
SunTrust and Seeing beyond money are federally registered service marks of SunTrust Banks, Inc.
[ST:XCL]
So there is no function provided to collect specific information from
TASID (like there is for MXI)?
Catch the WAVV! http://www.wavv.org
WAVV 2007 - Green Bay, WI - May 18-22, 2007
----------------------------------------------------------------------
When you use TASID in batch, TASID runs the snapshot utility.
Regards,
John Kalinich
Computer Sciences Corp
As john just pointed out, there is the SNAPSHOT option (Option 8) that
you can preset prior to execution. But to answer your real question, no.
Rob Scott continues to develop MXI, but Doug Nadel turned it over to the
ISPF development team when he left that group. It has ben mostly
stabilized since then (2001 timeframe, I think).
John P Kalinich wrote:
>
> When you use TASID in batch, TASID runs the snapshot utility.
>
> Regards,
> John Kalinich
> Computer Sciences Corp
>
> ----------------------------------------------------------------------
> For TSO-REXX subscribe / signoff / archive access instructions,
> send email to LIST...@VM.MARIST.EDU with the message: INFO TSO-REXX
>
--
Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service: 360-715-2467
rich.smrcina at vmassist.com
Catch the WAVV! http://www.wavv.org
WAVV 2007 - Green Bay, WI - May 18-22, 2007
----------------------------------------------------------------------
> I'm not familiar with the snapshot utility, what does that do?
>
> John P Kalinich wrote:
> >
> > When you use TASID in batch, TASID runs the snapshot utility.
> >
> > Regards,
> > John Kalinich
> > Computer Sciences Corp
> >
> > ----------------------------------------------------------------------
> > For TSO-REXX subscribe / signoff / archive access instructions,
> > send email to LIST...@VM.MARIST.EDU with the message: INFO TSO-REXX
> >
>
> --
> Rich Smrcina
The Snapshot utility allows you to create a sequential file which
contains data obtained by most of the TASID options. The name of
the data set can be changed by using the Settings pulldown on the
TASID main menu.
Here is how I execute it in batch.
//ISPF EXEC $LOGDED,PARM= <--- NULLIFY START-UP CLIST
//SYSTSPRT DD SYSOUT=* <--- OVERRIDE TERM=TS IN LOGON PROC
//SYSTSIN DD * <--- OVERRIDE TERM=TS IN LOGON PROC
PROFILE PREFIX(TRIDJK)
ISPSTART PGM(TASID) PARM(8)
PRINTDS DSNAME(TASID.SNAPSHOT) CCHAR NOTITLE SYSOUT(R) HOLD
//ISPPROF DD UNIT=VIO, <--- TEMPORARY ISPF PROFILE
// SPACE=(TRK,(1,1,5)),
// DCB=(RECFM=FB,LRECL=80,BLKSIZE=6160)
--
Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service: 360-715-2467
rich.smrcina at vmassist.com
Catch the WAVV! http://www.wavv.org
WAVV 2007 - Green Bay, WI - May 18-22, 2007
----------------------------------------------------------------------