Search found 2 matches

by bharghava_vamsi
Tue Mar 28, 2006 5:04 pm
Forum: JCL
Topic: Dataset Size
Replies: 3
Views: 11448

Dataset Size

How can i determine the size of a pds member through jcl?
by bharghava_vamsi
Tue Mar 28, 2006 2:07 pm
Forum: JCL
Topic: condition codes
Replies: 9
Views: 26901

Condition code

Hai, Try this and see if this works. Inform if it doesn't. //step1 exec.... //step2 exec... //step3 exec pgm=...,cond=(0,NE,step1),even The step3 will execute only if step1 is successfully executed. The step3 executes even if step2 is abended and we specify it using 'even'. Hope this answers your qu...