Page 1 of 1

How can I suppress header when using FPRINT?

PostPosted: Tue Jun 30, 2009 3:51 pm
by samuelsam
I want to print my dataset via FPRINT but I can't find the way to suppress the page headers from my result.
( I tried to search for it but nothing found also the manual) I use JCL below to run my job. Anyone, could help me please?
Page header that I do not want is in red.

PS. File Aid version 9.1

//STEP1 EXEC PGM=FILEAID
//DD01 DD DSN=DATA.TEST,DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSLIST DD DSN=DATA.TEST.FORMAT,
// DISP=(,CATLG,CATLG),UNIT=DISK,
// SPACE=(TRK,(1,1),RLSE)
//DD01RL DD DSN=DATA.TEST.MACROS,DISP=SHR
//SYSUDUMP DD SYSOUT=*
//SYSIN DD *
$$DD01 FPRINT LAYOUT=TEST001
/*


This is example of my result

30 JUN 2009 FILE-AID 9.1.0 PRINT FACILITY 04:58:25 PAGE 1

FILE CONTENTS REPORT
FILE PRINTED DATA.TEST.FORMAT
TYPE SEQUENTIAL


RECORD: 1 TEST001
---- FIELD LEVEL/NAME ------- -FORMAT- ----+----1----+----2----+----3----+----4-

5 TEST-RECORD 80/GRP

Re: How can I suppress header when using FPRINT?

PostPosted: Thu Jul 02, 2009 8:58 am
by hsbawari
Hi

use SORT to skip the first record

u can give the following option

SORT Options:
SKIPREC = n this will skip first n records

Re: How can I suppress header when using FPRINT?

PostPosted: Thu Jul 02, 2009 9:01 am
by dick scherrer
Hello and welcome to the forum,

Please note the request was to suppress the headers - not a way to eliminate them later.

Also, the headers are repeated for each page of the output. . .

Re: How can I suppress header when using FPRINT?

PostPosted: Thu Jul 02, 2009 11:19 am
by samuelsam
dick scherrer wrote:Hello and welcome to the forum,

Please note the request was to suppress the headers - not a way to eliminate them later.

Also, the headers are repeated for each page of the output. . .


Yes, anyone know about this issue?