Printing the WSim program directory

WSim has a program directory shipped with the MVS™ product distribution tape for installation on MVS. The program directory contains detailed instructions you need to install and maintain WSim.

In an MVS environment, you can use the JCL shown below to print a copy of the WSim Program Directory from the MVS product distribution tape.

//PRPGMDIR JOB
//*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*
//*     SAMPLE JCL TO PRINT WSim PROGRAM DIRECTORY FROM TAPE  *
//*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*
//COPY     EXEC PGM=IEBCOPY
//SYSPRINT DD  SYSOUT=A
//TAPE     DD  DSN=IBM.H281110.F3,DISP=(OLD,PASS),UNIT=TAPE,
//             LABEL=(4,SL),VOL=SER=281110
//DISK     DD  DSN=&&TEMPDS,DISP=(NEW,PASS),UNIT=SYSDA, 
//             SPACE=(80,(5000,5000,1)) 
//SYSIN    DD  * 
 COPY INDD=TAPE,OUTDD=DISK 
 SELECT MEMBER=PGMDIR 
/* 

//PRINT    EXEC PGM=IEBPTPCH 
//SYSPRINT DD  SYSOUT=A 
//SYSUT1   DD  DSN=&&TEMPDS(PGMDIR),DISP=(OLD,DELETE) 
//SYSUT2   DD  SYSOUT=A 
//SYSIN    DD  *
 PRINT PREFORM=M 
/*

The WSim Program Directory is printed on the printer designated by the SYSPRINT statement. For example, the following statement designates a printer with SYSOUT class A:

//SYSPRINT DD SYSOUT=A