How do you override a parameter in Positional parameters?
Answers were Sorted based on User's Feedback
Answer / mahesh
//STEP EXEC PGM=PRGM1
//DD01 DD DSN=DATA.SET.LIB,DISP=SHR
and if you want to override,then
you have to write like
//STEP.DD01 DD DSN=DATA.SET.OVERRIDE,DISP=SHR
This will override the dataset(data.set.lib)
| Is This Answer Correct ? | 8 Yes | 5 No |
Answer / rajesh_m13
By providing Stepname.patameter name
i.e // exec procedurename,parameter.ddname with changed
parameters
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / pankaj
By Putting ', ,' in place pf positional parameters
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the function of dd name parameter with a 2 part structure; audit.report?
What is the error/SOC code if dd names are not sysut1 and sysut2 in IEBGENER?
01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable
A statement about PROCs is " In PROCs, Symbolic Parameters can be assigned on PROC and EXEC", BUT On which EXEC, (i) On the JCL's EXEC which is calling to PROC1. (Inside JCL, EXEC PROC1) (ii) or On the PROC's EXEC where it calls the PGM1. (Inside PROC, EXEC PGM=PGM1)
Can we use COND=EVEN on a job card, when jobs are scheduled through scheduler?
My requirement is : How to populate a empty PS/flat file with ONLY spaces in the first line. You should not use any input dataset to do this. I'm not sure whether you may use any utility for this purpose?
how to code instream data in procedure?
Are there any set of rules for the names of the steps used in a job? What are they?
how to execute the last 5 steps in jcl
I've one sequential file, That file contains millians of Junk & CHAR recoreds example File 1 ,,,,,...,,,.....,.,.INFOSYS.....,,,,,,,,,,,WIPRO..........., ,...,..,. My questions is : I want omit the 44th posstion to 4 CHAR (WIPRO) remaining things I want output file (including Junk CHAR also)... How can we slove this problem & give me a syntax. Please provide the result as soon as possible.
how to write a jcl prog to copy alternate recs from ps1 to another ps2,suppose ps1 having 10 recs?
What does a disposition of (NEW,CATLG,DELETE) mean?