What are the parameter in the job card wihtout which job
won't run........
Answers were Sorted based on User's Feedback
Answer / anonymous
Notify is not neccesary...
Position parameter like ' jobname & job (account info) are
mandantory.
| Is This Answer Correct ? | 24 Yes | 1 No |
Answer / pradeep
Just JOBNAME JOB (ACCT information), 'PRGMR NAME' are
mandatory fields to execute a job. Job will run with RC=4
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / suputhru
in real time :
Position parameter like ' jobname & job (account info) are
mandantory.
Notify=userid is not neccesary...meenu.
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / 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 |
Answer / rajesh kumar
Keyword parameters like MSGCLASS and positional parameters
like job name and acc..info...
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / k.suman
to submit a job job name must be specify,other wise system
won't recognize the job.other parameters are not mandatory.
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / meenu
Notify parameter is mandatory one with out notify parameter the OS is unable to identify the job ie., the is not going to be submitted.
With out accounting information and username the job can be submitted to the OS.If any one is having doubt just plz check with this.
| Is This Answer Correct ? | 1 Yes | 13 No |
How to get cursor position from system in CICS environment ?
What do you understand by the term “keyword” with respect to jcl and what is the opposite of the term?
I have 5 generations in my GDG. How do I code in the JCL to consider all the 5 versions of the GDG ?
What do we mean by 'Virtual storage' for a dataset and for a JOBSTEP ? What is the significance of the following statement for a programmer 'Virtual storage results in program addresses being independent of the addresses that actually exist in a computer' ?
How to read records in reverse order in flat file?
Suppose there r 10 steps . Out fo which i want to execute 10th, 9th and 8th in reverse order without using IEBEDIT. How can i do that..???
How jcl is used for testing batch programs?
Explain about Specifying compiler options in the PROCESS (CBL) statement
Explain the function of the steplib dd statement?
Explain COND used in JCL?
There is one QSAM is the VB file. i want to get the first characters in this file and change those characters from'abcd' to '1234' and creat a vasm file to put '1234' in it. how to do in only JCL. if it not QSAM, it's VASM and VB. how to do it.
Is it possible to define dd statements as you want?