Previous Topic

Next Topic

Book Contents

Book Index

Routing the Production Job’s Report to VM using JCL

A specific report created by a Control‑M production job can be routed using NJE services to a VM machine (user), simply by defining the destination of the report in the job’s JCL. The following examples demonstrate how to implement this using standard MVS and JES statements:

//REPORT DD SYSOUT=A,DEST=(VMPROD,USER1)

//JOB1 JOB ...
//OUTREP OUTPUT DEST=VMPROD.USER1
//STEP1 EXEC PGM=...
//REPORT DD SYSOUT=A,OUTPUT=*.OUTREP

Punched sysout files of the job can be sent to VM using the JES2 /*ROUTE PUNCH statement. A punched SYSOUT file consists of 80-character records. Most sites define JES output CLASS B as a punch class.

    //JOB1 JOB ...
    /*ROUTE PRINT VMPROD.USER1
    //STEP1 EXEC PGM=...
    //REPORT DD SYSOUT=A

The following figure shows Routing the Production Job’s Report to VM using JCL:

Figure 30 Routing the Production Job’s Report to VM using JCL

Linked JPEG File Template INControl

Parent Topic

File Transfer From MVS to VM