Are CLIST EDCHEK and SUBCHEK available in JCLCheck for MSP?
Fujitsu MSP
MSP has a PFD command table to define a command to run in TSS environment. CLIST EDCHEK and SUBCHEK are available in JCLCheck for MSP and a command to be used by EDCHEK and SUBCHEK can be defined in the table.
PFD command table would be saved in PFD.FPOPTION(JRRMCMD).
If there is no JRRMCMD member, it means the site has not customized the PFD command table. In this case, create JRRMCMD member and define as follows ;
Ex ) Define a command, SUBC and EJCK
1 )JRRMCMD member as follows ;
JRRDFCMD USERCMD=(SUBC)
JRRDFCMD USERCMD=(EJCK)
END
2) Run SMP job
// JOB
// EXEC SMPPFD
//SMP.SMPPTFIN DD *
++USERMOD(PFDSUBC).
++VER(L010) FMID(KRR0301) PRE(UL16979).
++SRC(JRRMCMD) TXLIB(FPOPTION) DISTLIB(JRRSRC).
/*
//SMP.SMPCNTL DD *
RECEIVE SELECT(PFDSUBC).
APPLY SELECT(PFDSUBC).
/*
//SMP.FPOPTION DD DSN=PFD.FPOPTION,DISP=SHR
JRRMCMD is read by DD FPOPTION.
PDF command table is applied by SMP. The site can set any name as USERMOD.