COND ->
step1
.
.
step2,

Step2, Executes if the CC of step1 is 0.
But even if it is NOT 0 and if we dont give COND, will step2
be executed ?

Answer Posted / sandhya

In the job card we have to give cond=(0,gt)
then if even step1 is abended then also step2 will execute

Is This Answer Correct ?    0 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

List the different components of jcl statement?

691


What are steplib and joblib? What for they are used?

695


how you will the direct the data to spool using sysout option?

1763


I HAVE A VB BLOCK WHICH IS USED AS INPUT IN COBOL CONATINING SOME RECORDS CAN I CHANGE THE FILE FROM VB TO FB?

2104


Why include statement is used in a jcl?

689






I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?

1347


What is the maximum length of a single line of jcl?

829


What is the function of dd name parameter with a 2 part structure; audit.report?

698


What does it mean by Restart and Checkpoint in JCL ? How are checkpoints being taken and what is their usage ? How to use Checkpoint macro on a JOBSTEP ?

9216


What methodology can be adapted to transfer data to a program that is coded using the exec statement?

606


How does jcl act on code(if you take a cobol program)?

707


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

1037


I want to JCL sort for Non-COMP and COMP-3 fields SORT FIELDS=(1,5,A,6,11,A,12,11,A,19,1,A,20,1,A),FORMAT=BI,EQUALS Length of comp bytes is 11 bytes which start at 6byte and 12 byte considering 11 bytes in comp-3 is 6 bytes. Can anyone tell if the above sort work SORT FIELDS=(1,5,A,6,6,A,12,6,A,19,1,A,20,1,A),FORMAT=BI,EQUALS does not works OK

1485


What does a disposition of (MOD,DELETE,DELETE) mean ?

666


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

827