Users often attempt to pass DUPLICAT as a direct parameter (e.g., LPALIST DUPLICAT), which results in no data or an error because the LPALIST command does not accept positional parameters.
SYSVIEW 17.0 - z/OS supported releases -
In SYSVIEW, DUPLICAT is a subcommand of LPALIST, not a parameter.
To use the DUPLICATE subcommand in a batch environment (GSVXBAT), the primary command must be chained with the subcommand using a semicolon within the COMMAND statement.
Implementation Steps:
Here is the SAMPLE JCL:
//YOURJOB JOB (ACCOUNT),'SYSVIEW BATCH',CLASS=A,MSGCLASS=X
//*
//STEP01 EXEC PGM=GSVXBAT,REGION=0M,
// PARM='SSID=GSVX,LINECNT=66,SHOWINP=YES,MENUOFF'
//STEPLIB DD DISP=SHR,DSN=your.SYSVIEW.CNM4BLOD
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
COMMAND=(LPALIST;DUPLICAT)
SCROLL
COMMAND=(END)
/*
//