We want to redirect GSPDSU DIRLIST output from Printer to DISK.
when we use the jcl below it does not work.
// LIBDEF *,SEARCH=(CAII.FAQS51,CAII.GSS50)
// ASSGN SYSLST,SYS006
// ASSGN SYS006,DISK,VOL=WORK01,SHR
// DLBL IJSYSLS,'CAI.LIBR.YES.PRINT',0,SD
// EXTENT SYS006,WORK01,1,0,1,100
// EXEC GSPDSU,SIZE=GSPDSU
PDS=MON,DIRLIST,SEL=*.OAL
How do we get the result on disk ?
GSPDSU is a program to maintain PDS files (like SYS$VIO, SYS$EVT, SYS$MON)
// EXEC GSPDSU,SIZE=GSPDSU
PDS=MON,DIRLIST,SEL=*.OAL
the DIRLIST output can not be redirected to DISK by using the standart IBM // DLBL IJSYSLS.
This can be done only when they also have CA Dynam/FI installed.
Then they can use // DLBL FISYSLS to redirect the DIRLIST report output to disk.
They need to set the following Dynam/FI System Option to support this.
In CUI screen CAYD-1311 CA DYNAM/FI System Processing Details
change:
Support DTFDI Processing: NO (YES, NO)
to
Support DTFDI Processing: YES (YES, NO)
explained in the Dynam for z/VSE Programming Guide.