i want to avoid the positional parameter how to code it ?
Answers were Sorted based on User's Feedback
Answer / venkat
without specifying the value put a comma(,).
Ex:
//job00001 job ,,notify=&sysuid
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / nikita kekre
To avoid positional parameters,mark their presence with the
help of comma.
eg in Jobcard if i dnt wanna code accounting info and
programmer's name(both r positional parameters thn i cn
simple use commas)
//t12344J JOB ,,CLASS=A,MSGCLASS=A,NOTIFY=&SYSUID
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / pratim dasgupta
if only keyword parameters are coded! no need to give comma
even. if even one positional parameter is coded then comma
is necessary!!
| Is This Answer Correct ? | 3 Yes | 0 No |
How do you create a temporary dataset?
How to pass values in jcl to cobol?
How would I code JCL to copy a gdg data set G001v00 and create a gdg Data set G001v01
MOD, DELETE; What does a disposition of (,DELETE) mean ?
What statement marks the end of an in-stream or catalogued procedure?
What u mean by include statement in JCL ?
how to do automated restart when a job abends?
A dd statement consists of 4 fields. Name them?
I have a cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.
How can i execute 5th step without executing first 4 steps?
What are isolation levels? Where do we need to specify them in compiling JCL?
01 A. 10 B pic X(10). move spaces to A. move spaces to B. output in A & B