Previous Topic

Next Topic

Book Contents

Book Index

Decollating from Compressed Datasets

Decollation from compressed datasets that have been created directly from a job (using parameter SUBSYS) has the following characteristics:

Sometimes it is necessary to test the decollation criteria of a large report that cannot be easily produced for testing. There is a simple technique that allows both decollation by Control-V and normal printing by operators, without having to rerun the job that produces the report.

The JCL OUTPUT statement allows you to route a SYSOUT to more than one destination by defining one copy for LOCAL printing and another for DEST Uxxxx or one copy to the regular output printing class and the other to a held output class. (Refer to your JCL manual for further details.) The report is deleted from the spool after Control-V has decollated it, and the printer has printed it. For example:

Figure 465 JCL Output Example

//JOBCARD

//OUT1 OUTPUT DEST=LOCAL

//OUT2 OUTPUT DEST=U1001

  .

  .

  .

//SYSPRINT DD SYSOUT=A,OUTPUT=(*.OUT1,*.OUT2)

  .

  .

  .

Parent Topic

Report Sources