When running the job CLX20RCB to receive CA OPS/MVS 13.5 errors occur because temporary datasets with prefix SMPETEMP are being allocated.
Some of the error messages:
ICH408I USER(xxxxxx) GROUP(yyyy )
SMPETEMP.CCLXD50.F1 CL(DATASET ) VOL(vvvvvv)
DEFINE - RESOURCE NOT PROTECTED
IKJ56893I DATA SET SMPETEMP.CCLXD50.F1 NOT ALLOCATED+
IGD17012I USER NOT AUTHORIZED TO DEFINE DATA SET
SMPETEMP.CCLXD50.F1
Release : 13.5
Component : OPS/MVS
This prefix SMPETEMP was defined when the job CLX10CSI was executed. In this job there is a step named INITCSI where "SMPETEMP" must be replaced with an user prefix:
ADD OPTIONS(OPTGBL)
DSSPACE(200,100,500)
DSPREFIX(SMPETEMP) <---
LKED(IEWL)
ASM(ASMA90)
RETRYDDN(ALL)
RECZGRP(ALLZONES) .
You can update the value of DSPREFIX directly in the SMP/E panels or run a job like below to set the name you want:
//INITCSI EXEC PGM=GIMSMP,REGION=0M,
// PARM='CSI=prefix.CSI,DATE=U'
//SMPOUT DD SYSOUT=*
//SMPRPT DD SYSOUT=*
//SMPLOG DD DISP=SHR,DSN=prefix.SMPLOG
//SMPLOGA DD DISP=SHR,DSN=SYS3.OPSMVS.R135.SMPLOGA
//SMPPTS DD DISP=SHR,DSN=prefix.SMPPTS
//SMPPTS1 DD DISP=SHR,DSN=prefix.SMPPTS1
//SMPCNTL DD *
SET BOUNDARY(GLOBAL).
UCLIN.
REP OPTIONS(OPTGBL)
DSSPACE(200,100,500)
DSPREFIX(TEMPPREF)
<==== customize LKED(IEWL)
ASM(ASMA90)
RETRYDDN(ALL)
RECZGRP(ALLZONES) .
ENDUCL.