suppose i have 10 job steps and i want to execute only step
6.How to write?
Answer Posted / anji
In the JOBCARD, code COND parameter. Then, when the Job is
executed , only
the Step mentioned in the RESTART parameter will get
executed.
e.g., RESTART=STEP06,COND=(0,LE)
if want more details check it in cool mainframe tips
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
which parameter is used to check the syntax of a jcl without executing it?
What is jcl in mainframe, and how many types of jcl statements are there for a job?
Is it possible to code instream data in a PROC?
WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375
How is a type of file defined in the jcl that executes the cobol program?
Is it possible to left uncode disp?
How to pass data to a program that is coded in an exec statement?
I have many files which i am receiving from client everyday. I have one step for every file to check for empty or not. Here client gives 30 files i need to check for every file for empty or not and i need to perform 30 steps. Can I do it in single step. Dynamically i need to change the File name in my step.
by using cond parameter maximum 8 cond can be coded in single cond means ?explain
What do you understand by the terms: joblib and steplib?
Give the syntax of job specifying jcl statement.
How can a fb file convert to vb file using sort program?
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) ?
What is the function of the dd mgmtclas keyword in sms datasets?
How do you run a COBOL batch program from a JCL? How do you run a COBOL/DB2 program?