COND specifies the conditions for executing the subsequent job step. The value after the COND= is compared to the return codes of the preceding steps and if the comparison is true, the step is bypassed.
Latest Answer : In exec statement the condition is used for by-passing the perticular step through the condition,if COND=0 Its a successfull executionif COND=4 Its a warning if COND=8 Its a serious errorif COND=16 Its a fatal error.So that we can use this condition key ...
Data definition name is the eight character designation after the // of the DD statement. It matches the internal name specified in the steps executing program. In COBOL that's the name specified
Latest Answer : The DD name is the logical 8 characters file name which alllows the pplication program to identify or tag the dataset.Whereas the DSN is the physical file name used by the MVS to identify the dataset.like in any application program we can write ...in ...
How many jobs(maximum) can we give in one member to submit?How many steps(maximum) can we give in one job?How many steps (maximum) can we give in one member to execute after submitting?
There are 100 steps in a job card.If we want to execute 100th step,what to do? and but remaining 99 steps should not execute
A job has 3 steps by name step1, step2, step3.if i don't want to execute step2, what i have to do.
Latest Answer : Use COND=ONLY in step 2, so that only if step 1 fails then step 2 will be executed otherwise it will bypass step2 and move to step3. ...
Job have 3 steps in
1) Step01 creating New GDG file(+),
2) Step02 Delete file(+),
3) Step03 create new GDG file with same file name
What is the version for that file?
Latest Answer : Dude...Simple...Just write them in reverse order....that is only the solution.... ...
How to Run same steps in a jcl 'n' number of time without repeating the steps n times?
Latest Answer : Hi,if you want to run the same steps repeated number of times.code all those steps in a Proc (either ctaalog or instream), and call the proc when ever and where ever u want.please correct me if i am wrong incase.jinka.saikrishna@gmail.com ...
How to Run same steps in a jcl 'n' number of time each time with different input files without repeating the steps n times?