What are the parameter in the job card wihtout which job
won't run........
Answer Posted / imthiyaz shaik
Hi, Both job name and reserved word JOB are necessary to
run a job.
Following is the test JCL, that I tested.
//JOBJOB01 JOB
//* CLASS=D,MSGCLASS=8
//*
//*********************************************************
//* TO CHECK WHICH PARAMETERS ARE MANDATORY IN A JOB CARD.
//**********************************************************
//*
//**********************************************************
//* DELETE OLD FILES NOT NEEDED
//**********************************************************
//*
//JSTEP01 EXEC PGM=IEFBR14
//DD1 DD DSN=L.TEST.TEST.FILE,
// DISP=(MOD,DELETE,DELETE)
//*
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
What is the function of the dd dcb keyword?
Is condition checking possible in jcl? If yes, how?
Explain how can values be passed from the job stream to an executable program?
Explain the function of the dd dcb keyword?
Is automatic restart possible in jcl?
I need exexution process for JCL programs
How gdg are concatenated?
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
Name the statement which can be used to send data to another mvs jes3 node?
How to alter the parameters for the existing gdg?
if we want to use a gdg which is already created by some job, then how to use the reference of the last generation in a jcl?
How to pass the parameter in parm using linkage section ? (syntax)?
Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?
Is it possible to left uncode disp? If yes, how?