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 |
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) ?
How can we see data in TEMPARARY DATA SET in JCL ?
//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 /*
Do we need to code DCB parameters when using DISP position as MOD?
What is maximum length of block size?
5 Answers Cap Gemini, Kanbay, TCS,
In your JCL, run the even numbered steps if date is even and run odd numbered steps if date is odd . Where do you generate the date ??in cobol or JCL ??
I found in one of the jcl, gdg version being mentioned as : abc.def.ghi(-0) Can anyone tell me how referring the version as (-0) is different from referring it as (0)
GDG Create syntax ?
what is the purpose of coding notify parameter in job statement?
Define concatenating?
How do you overcome this limitation ?
a input file contains 1000 records, how to move the first 500 record into one out put file and how to move to second 500 records to anothere output file