| Date: | Wed, 9 Oct 1996 19:26:57 GMT |
| Reply-To: | Rdsdnen <rasanen@SPRYNET.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU> |
| From: | Rdsdnen <rasanen@SPRYNET.COM> |
| Organization: | Sprynet News Service |
| Subject: | SAS/CONNECT need sample for TSO |
|---|
Hi all,
I need to run a SAS/CONNECT session where a NT 4 Server starts a SNA Server
3270 session
and logs on to TSO, initiates a SAS interactive session and runs a job with
a download.
Looking over the sample in my SAS 6.11 installation, it looks like there is
a beginning of something..
Could someone post a complete example of the above?
(1) Start SNA Server 3270 session on Windows NT
(2) Logon to MVS/TSO (userid,password)
(3) Navigate a bazillion infodesk spam messages about system outages
(4) Land on the main ISPF ISR@PRIM panel after a bazillion ENTER presses
(5) Exit to READY ?
(6) Start an interactive SAS session
(7) Submit a job -- now, the job will involve tape volumes, so this has to
be a batch submission instead
(8) After job completes, download a dataset from MVS/TSO to NT Server
(9) Logoff SAS - TSO - Close SNA session
Doable? How?
This was the sample code on the /connect directory
/********************************************/
/* modify the following stmts to reflect */
/* your comamid and remote session id. */
/* remove the asterisk (*) to "uncomment". */
/********************************************/
* %let rsession=Your_remote_session_id;
* options remote=&rsession comamid=access_method;
/********************************************/
/* if appropriate, modify and uncomment the */
/* following FILENAME statement. */
/********************************************/
* filename rlink "Connect_script_file_name";
/********************************************/
/* connect to target host */
/********************************************/
signon;
/********************************************/
/* this sample uses a remote library called */
/* PERM. */
/********************************************/
rsubmit;
* libname perm "remote_path_name";
endrsubmit;
--
rasanen@sprynet.com
http://home.sprynet.com/sprynet/rasanen/
|