we use a home made programm to allocate a sequential dataset :
QA0009 STARTOS
OPEN (OUT,(OUTPUT))
CLOSE OUT
RETOS
OUT DCB DSORG=PS,DDNAME=OUT,MACRF=PM
END
OPEN (OUT,(OUTPUT))
CLOSE OUT
RETOS
OUT DCB DSORG=PS,DDNAME=OUT,MACRF=PM
END
Here is an example in the JCL
//ALLOC EXEC PGM=Q0009
//OUT DD DISP=(,CATLG,KEEP),
// DSN=FILE.DATASET,
// SPACE=(TRK,(1,1)),RECFM=FB,LRECL=80
//OUT DD DISP=(,CATLG,KEEP),
// DSN=FILE.DATASET,
// SPACE=(TRK,(1,1)),RECFM=FB,LRECL=80
I would like to know what is the différence with the ibm program : IEFBR14 which allow te create a sequential dataset too.