Posts

Showing posts from 2013

Insert a blank record in the beginning of the output dataset using sort jcl.

Image
The following code is used to get a blank record in the beginning of the output record using sort JCL. Input :- ********************* LINE 000000000001 LINE 000000000002 LINE 000000000003 LINE 000000000004 ********************* Output:- ********************* LINE 000000000001 LINE 000000000002 LINE 000000000003 LINE 000000000004 ********************* Code:- The Header1 is used here to give 80 spaces. X indicates space. Using Header we can give some other titles too. Header1=(5,C'TITLE'); Header2=(4,C'GOOD');