Can we write same stepname for one or more steps in on
job ?
Answers were Sorted based on User's Feedback
Answer / suresh
YES.YOU CAN DO IT, BUT WHEN YOU USE RESTART AND COND IN
YOUR JCL IT LEADS TO PROBLEM, SO IT IS BEST TO USE UNIQUE
NAME FOR EACH STEP
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / yuvaevergreen
Yes. We can code same step name for another step. The job
gets executed successfully. A warning alone comes.
| Is This Answer Correct ? | 16 Yes | 4 No |
What is the difference between the JOBLIB and the STEPLIB statements?
What statement can be used to send data to another mvs jes3 node?
IN MY JCL I VE 8 STEPS I WANT TO EXCUTE STEP 8 FIRST THEN EXCUTE STEP 4 ,HOW WILL EXCUTE STEP 8 BEFORE STEP 4?
7 Answers Cognizant, IBM, IGT,
Explain about ISPFTTRC
Hi, If a catolog proc has another proc in it, both have ddnames dd1 and dd2. what proc will override if gave override parameter. Here both have same step names.
Does the terms, JOBLOG, SPOOL and SYSOUT indicate the same thing, i.e., where JCL and JES messages and statements are written ?
There are 5 steps in a Job. How to bypass the first step by making use of only COND Parameter and not using any Restart and IF/THEN/ELSE parameter?
GDG Create syntax ?
how can we pass parameters from JCL to cobol subprogram...my requirement is i should not get data from mainprogram but i need it from JCL directly
How to pass data to a program that is coded in an exec statement?
what is the difference between return code and maxcc?
consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayed after the PERFORM is over? assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above