Release : 4.5
Not sure why anyone would want to have DFHSM restore a file that is simply being backed up for a short time like a Faver export would be.
We never advise customers to increase their overhead for that process. Faver is not a data management utility like DFHSM or CA DISK. Faver is a IDCAMS utility.
However, on page 68 of the Faver User Guide is an example showing how to use the DD statement to point to a specific MCDS.
//MCDS DD DSN=mcds.data set.name
Please be sure that you have not already used GVPARMS to define a MCDS globally for Faver as well. To determine what you are using for your global parms you can run this job.
//GVPARMS EXEC PGM=GVPARMS
//SYSLIB DD DISP=SHR,DSN=your.FAVR45.CBSVLINK
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
If you decide to define something globally you can use the following sample to setup GVPARMS.
//SYSIN DD *
SMGR=HSM
NORECALL
SMGRDDN(3)=FILES
SMGRDSN(3)='DFHSM.FILES'
SMGRDDN(4)=PARMLIB
SMGRDSN(4)='DFHSM.PARMLIB'
To utilize more than one set of HSM files you can use this pattern
SMGR=HSM
SMGRDDN(1)=MCDS1DD
SMGRDSN(1)=MCDS1.filename
SMGRDDN(2)=MCDS2DD
SMGRDSN(2)=MCDS2.filename