What is a COND parameter in JCL?

Answer Posted / suputhru

both statements coded then
JOB-COND will override EXEC-COND.

job-cod will active.

Is This Answer Correct ?    16 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the utility programs in jcl?

648


what is the use of JCL?

666


How to override loadlib?

1428


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.

729


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

1352






Explain the function of the dd dcb keyword?

706


When The Define Jcl Is Not Available, How Can You Get Information About A Vsam File's Organisation ?

748


Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed

1972


how would you create a temporary dataset? And where will you use them?

769


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) ?

1770


what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?

778


Give the syntax of job specifying jcl statement.

640


How gdg are concatenated?

672


What is use of restart and how to use it?

772


WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move

855