User's Manual

PDL principles and procedures
1-20 Using LCDS Print Description Language
The following table illustrates a sample JSL file format and
provides examples. Note that comments are used to designate
the beginning of each level.
Table 1-7. Sample JSL file format
/* This sample JSL shows the JSL command levels*/
JDLSMP: JDL;
/* System level commands coded here*/
VFU1: VFU ASSIGN=(1,1), TOF=1, BOF=66;
VFU9: VFU ASSIGN=(1,9), TOF=9, BOF=66;
VOLUME HOST=IBMOS;
RECORD LENGTH=133;
LINE VFU=VFU9, DATA=(1,132);
OUTPUT FORMS=CPPR1, DUPLEX=NO, COPIES=2;
/* Catalog commands coded here if needed*/
CAT1: CATALOG;
LINE VFU=VFU1;
OUTPUT FORMS=FORM2
/* Job level commands coded here*/
JOBCPP: JOB;
JOB2: JOB INCLUDE=CAT1;
JOB3: JOB INCLUDE=CAT1;
OUTPUT DUPLEX=YES
END;