
JCL
How to define the Logrec Data Set SYS1.LOGREC
If you want to define a Logrec Data Set, you must first allocate it and then initialize it. //IFCDIP00 JOB CLASS=A,MSGLEVEL=(1,1),MSGCLASS=X,NOTIFY=&SYSUID //*—————————————————————— //* CREATE A NEW LOGREC DATASET AND INITIALIZE IT //*—————————————————————— //IFCDIP00 EXEC PGM=IFCDIP00 //SERERDS DD DSN=SYS1.LOGREC,DISP=(,CATLG), // VOL=SER=MVSRES,UNIT=3390,SPACE=(CYL,3,,CONTIG) /* In this example we create and initialize Logrec Data […]