Brief description of inline procedure of jcl.
No Answer is Posted For this Question
Be the First to Post Answer
How would I code JCL to copy a gdg data set G001v00 and create a gdg Data set G001v01
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
how you can direct the data to spool using SYSOUT option?
How to identify in JCL that an input file is empty without reading it?
How do you submit a job for execution?
what is the default region size if I dont specify region parametre in my job card ( I know that if I specify region=0k or 0M, then the job will occupy all he available resources at the time of job execution), but I want to know the defult value for "region" paramatre.
what is the alternative to model parameter?
Suppose I have a file with three fields with data in the following format 1. empid - S9(4) COMP 2. empname - X(20) 3. empsal - S9(5)V(2) COMP-3 If I view this file, it will not be in a readable format. How to display the empid and empsal fields in a readable format without using COBOL program? What kind of SORT card will have to be coded?
At what stage, operator can change the class and priority of a submitted job?
define cond parameter in jcl?
what is the meaning of 'sysin dd dummy'
How do you skip a particular step in a proc/JOB?