Previous Topic: ADD and UPDATE Statement Optional KeywordsNext Topic: DELETE Statement


JCL Examples

Note: Use the following as a guide to prepare your JCL.The JCL statements are for example only. Lowercase letters in a statement indicate a value you must supply. Code all statements to your site and installation standards.

Sample z/OS JCL

 //jobname    See the note above and page Listing Libraries for CA Datacom Products.
 //       EXEC PGM=DQUSERMT
 //STEPLIB    See the note above and page Listing Libraries for CA Datacom Products.
 //SYSUDUMP DD SYSOUT=*
 //SYSPRINT DD SYSOUT=*                            Print Output
 //SNAPER   DD SYSOUT=*
 //SYSOUT   DD SYSOUT=*
 //SYSIN    DD *
 SIGN/ON username PASSWORD password
 control statements
 /*
 //

Sample z/VSE JCL

 * $$ JOB ...           See the note above and Listing Libraries for CA Datacom Products.
 * $$ LST ...
 // JOB name
 // EXEC PROC=procname  Whether you use PROCs or LIBDEFs, see Listing Libraries for CA Datacom Products.
 // EXEC DQUSERMT
 SIGN/ON username PASSWORD password
 control statements
 /*
 /&
 * $$ EOJ