How to define a command in PFD command table in Fujitsu
search cancel

How to define a command in PFD command table in Fujitsu

book

Article ID: 235657

calendar_today

Updated On:

Products

JCLCheck Workload Automation

Issue/Introduction

EDCHEK and SUBCHEK by CLIST are available in JCLCheck for MSP ? 

 

Environment

Release : 7.1

Component : JCLCheck Workload Automation for MSP

Resolution

MSP has a PFD command table to define a command to run in TSS environment.  EDCHEK and SUBCHEK by CLIST 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 are no JRRMCMD member, it means the site has not customized 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.