How do You skip a Step In JCL?

Answer Posted / vinay sonar

We can do it using COND parameter put a always true
condition such as

COND=(0,le) or COND=(4095,ge)

Is This Answer Correct ?    8 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can I send output of job to my remote device careerride123?

672


in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?

2073


Explain the function of a dd statement?

667


What are the utility programs in jcl?

654


what is the difference between JES3 and JES2?

688






How can return codes be tested before execution of a job step?

931


What are the rules employed while naming the steps in a job?

664


What parameters can be used to limit the number of records written to a sysout dataset?

758


is there any way to execute more than one proc in the same exec statement at the same time..?

2115


Describe the various parameters utilized in the creation of a gdg?

691


Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?

729


How to resolve the error "WER488A JOIN CAPACITY EXCEEDED" I am using SYNCSORT with JOINKEYS to compare 2 files. I am Getting error - > WER488A JOIN CAPACITY EXCEEDED There are 2 files to be compared with about 2 million records each. LRECL is 3665. Can somebody give a pointer as to how to resolve this problem? I am using SYNCSORT with JOINKEYS to compare 2 files. I am Getting error - > WER488A JOIN CAPACITY EXCEEDED There are 2 files to be compared with about 2 million records each. LRECL is 3665. Can somebody give a pointer as to how to resolve this problem?

7620


How can an in-stream dataset be terminated?

852


Explain how can a jobs execution priority be modified?

748


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

1045