Batch processing
When batch processing is specified and you have completed all appropriate field entries, press <Enter> and Data Solutions displays the JCL Specification Screen, as shown in the following figure.
JCL Specification Screen
COMMAND ===>
JCL Information for Batch Processing:
SYSOUT class ===> *
JOB Statement Information:
===> //USERID0 JOB (’ODAQC2.0.0’,81),’DATA’,
===> // CLASS=P,NOTIFY=USERID0,MSGCLASS=R
===>
===>
Use JCL command to edit generated JCL
Use SUBMIT command to submit batch job
Use END to return to main COPY panel without submitting job
Make sure you set your JOB CLASS according to the estimated job processing size or time.
On the JCL Specification screen you can enter the following commands:
Command | Description |
---|---|
JCL | File-AID/Data Solutions generates the JCL to process the job and displays it on an edit screen, as shown in the below figure. |
SUBMIT | Submits the batch job. |
CANCEL | Terminates the function. |
END | Terminates the function. |
Generated JCL Edit Screen
Command ===> SCROLL ===> PAGE
****** ********************************* Top of Data **************************
000001 //USERID1 JOB (ACCOUNT),NAME
000002 //* YOU ARE VIEWING JCL THAT FILE-AID/DATA SOLUTIONS 23.1 HAS GENERATED
000003 //* TO COPY DATASETS.
000004 //*
000005 //* YOU CAN CHANGE THIS JCL IF DESIRED AND USE THE SUBMIT PRIMARY
000006 //* COMMAND TO SUBMIT THE JOB. THE CREATE OR REPLACE PRIMARY COMMAND
000007 //* CAN BE USED TO KEEP THIS JOBSTREAM FOR FUTURE USE.
000008 //*
000009 //* USE THE END COMMAND TO EXIT WITHOUT SUBMITTING THE JOB.
000010 //*
000011 //DASTEP EXEC PGM=UDASOLUT,REGION=8M
000012 //STEPLIB DD DISP=SHR,DSN=hlq.CXVJLOAD
000012 // DD DISP=SHR,DSN=hlq.SXVJLOAD
000013 //SYSPRINT DD SYSOUT=*
000014 //SYSLIST DD SYSOUT=*
000015 //DD01 DD DSN=USERID0.DASAMP.JCL,
000016 // DISP=SHR
000017 //DD01O DD DSN=USERID0.DASAMP.NEWJCL,
000018 // DISP=OLD
000019 //DD01SC DD DSN=USERID0.DATA\SC.D97170.T175715(SELECT),
000020 // DISP=(OLD,DELETE)
The generated JCL can be edited, submitted with the SUBMIT primary command, and saved by using the CREATE or REPLACE primary commands. Saving your generated Copy function JCL allows you to postpone execution or rerun the same job at another time.
We recommend specifying a region of 8M or greater to avoid any memory/shortage problems. The region size required is affected by the DCB parameter BUFNO coded on DD statements. The BUFNO= parameter coded explicitly on a DD statement will override the Data Solutions default of 6 or the installation defined default set at configuration time (batch option BATCH_BUFFER_SPACE, see BATCH_BUFFER_SPACE in the File-AID/Data Solutions product configuration). The greater the number specified the higher region size is required at execution time.
Related topics