Previous Topic: 3800-3 PrintersNext Topic: CA JCLCheck Runtime Options


3820 Printers

Use a SYSOUT DD statement as follows:

//SYSGRAPH DD SYSOUT=A,OUTPUT=oname,
              DCB=(OPTCD=J,RECFM=FA,LRECL=133)

and an OUTPUT statement as follows:

//oname OUTPUT FORMDEF=01011n,PAGEDEF=ppppp,
//            CHARS=(xxxx,yyyy),TRC=YES
oname

Indicates the ddname of the output statement.

n

Indicates one of the following:

0

Single-sided format

1

Normal double-sided format

2

Tumble duplex format

ppppp

Indicates one of the following page definitions:

V06481 or A08080

xxxx

Indicates one of the following character parameters for pitch:

GT15 or GT20

yyyy

Indicates one of the following character parameters for font:

TSCF or TSCK

Use only the following pairing of character parameters:

(GT12,TSCC) (GT15,TSCF) (GT20,TSCK)

You can use any 15-pitch font instead of GT15, any 12-pitch font instead of GT12, or any 20-pitch font instead of GT20.

Examples

Prints the graph in landscape format at 15 cpi:

//oname OUTPUT FORMDEF=010111,PAGEDEF=V06481,
//            CHARS=(GT15,TSCF),TRC=YES

Prints the graph in landscape format at 20 cpi:

//oname OUTPUT FORMDEF=010111,PAGEDEF=V06481,
//            CHARS=(GT20,TSCK),TRC=YES

Prints the graph in portrait format at 20 cpi:

//oname OUTPUT FORMDEF=010111,PAGEDEF=A08080,
//            CHARS=(GT20,TSCK),TRC=YES

Sample JCL for Producing a JCL Flow Diagram

Member AZ1GCHK in CAZ2JCL contains sample SYSOUT DD and OUTPUT statements for printing the graph output on any of the supported printers. Copy this member and edit it to suit your installation's needs.