Previous Topic

Next Topic

Book Contents

Book Index

Example

The old JCL (without CDAM):

//J01VV    JOB    ....

//STEP01   EXEC   PGM=XXXXXX

//PRINT    DD     SYSOUT=A

The output (DD statement PRINT) is written to the JES spool.

The new JCL (using CDAM):

//J01VV    JOB    ....

//STEP01   EXEC   PGM=XXXXXX

//PRINT    DD     SUBSYS=(CDAM,'SYSOUT=A,PREFIX=J01')

The output (DD statement PRINT) is written to a compressed dataset using the Compressed Dataset Access Method. The high level dataset name qualifier (prefix) is J01.

Parent Topic

How to Use CDAM